登录
首页 » matlab » lagrange

lagrange

于 2008-11-19 发布 文件大小:2KB
0 168
下载积分: 1 下载次数: 0

代码说明:

说明:  lagrange插值 快捷计算插值,挺好的.(lagrange interpolation quick calculation of interpolation, quite good.)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • hough2
    用MATLAB编程,进行二维图像的哈夫变换直线检测(Using MATLAB programming for two-dimensional image of the Hough transform line detection)
    2009-03-10 18:06:01下载
    积分:1
  • chap06
    ex5_1 I-型线性相位FIR滤波器 ex5_2 II-型线性相位FIR滤波器 ex5_3 III-型线性相位FIR滤波器 ex5_4 IV-型线性相位FIR滤波器 ex5_5 矩形窗频响 ex5_6 希尔伯特变换器设计-汉宁窗 ex5_7 低通滤波器设计-汉明窗 ex5_8 带通滤波器设计-布莱克曼窗 ex5_9 低通滤波器设计-凯塞窗 ex5_11 频率采样技术:低通,朴素法 ex5_12 频率采样技术:低通, 最优法T1 & T2 ex5_13 频率采样技术:带通, 最优法T1 & T2 ex5_14 频率采样技术:高通, 最优法T1 ex5_15 频率采样技术:差分器 ex5_16 频率采样技术: 希尔伯特变换器 ex5_17 利用Parks-McClella算法设计低通滤波器 ex5_18 用PM算法进行的带通滤波器设计 ex5_19 用PM算法进行的高通滤波器设计 ex5_20 用PM算法进行的阶梯滤波器设计 ex5_21 用PM算法进行的差分器设计 ex5_22 用PM算法进行的希尔伯特变换器设计(ex5_1 I-type linear phase FIR filter ex5_2 II-type linear phase FIR filter ex5_3 III-type linear phase FIR filter ex5_4 IV-type linear phase FIR filter rectangular window frequency response ex5_5 Hilbert ex5_6 converter design- Hanning window low-pass filter design ex5_7- Hamming window ex5_8 bandpass filter design- Blackman window ex5_9 low-pass filter design- Kaiser window ex5_11 sampling frequency: low-pass, a simple method ex5_12 sampling frequency: low-pass, optimal method T1 & T2 sampling frequency ex5_13: band-pass, optimal method T1 & T2 ex5_14 sampling frequency: high-pass, optimal method T1 sampling frequency ex5_15: differentiator sampling frequency ex5_16: Hilbert converter Parks-McClella use ex5_17 algorithm design low-pass filter PM algorithm ex5_18 with the band-pass filter design PM algorithm ex5_19 with the high-pass filter design PM algorithm used ex5_20 ladder filter design PM algorithm used ex5_21 differential design PM al)
    2009-04-04 11:17:43下载
    积分:1
  • mysegyImage
    说明:  读取地震数据的道头字并画出剖面图, 没有读出所有的道头,只读取了几个角为重要的(read headers of seismic data and draw the profile)
    2011-04-14 15:31:49下载
    积分:1
  • 1
    为作业最终的仿真结果与分析 PL_free.m:free space path loss model PL_logdist.m: log-distance path loss model PL_lognorm.m: log-normal shadowing path loss model plot_PL_general.m: plot the figures itum.m: ITU M.1225 vehicular-B(120km/hr) channel model AWGN.m: create AWGN channel object(The final for the job simulation results and analysis PL_free.m: free space path loss model PL_logdist.m: log-distance path loss model PL_lognorm.m: log-normal shadowing path loss model plot_PL_general.m: plot the figures itum.m: ITU M.1225 vehicular-B (120km/hr) channel model AWGN.m: create AWGN channel object)
    2013-12-09 22:28:31下载
    积分:1
  • Butterworth
    可实现Butterworth滤波器 的功能 使图像处理的一个重要功能部分(Butterworth filters can realize image processing functions to an important functional part)
    2010-06-12 16:36:02下载
    积分:1
  • papr22
    Compute and minimise the PAPR of an OFDM channel
    2012-06-10 21:58:10下载
    积分:1
  • matlab-for-zigbee
    ZIGBEE用MATLAB实现的源代码,可用于初学者用来学习和测试(Tree-Based Data Broadcast in IEEE 802.15.4 and ZigBee Networks.this is for new learners to use.)
    2014-02-25 22:44:01下载
    积分:1
  • learnMATLAB
    this is a good book to learn the matlab. from here , you can learn a lot idea about write the matlab code.
    2010-06-22 16:41:11下载
    积分:1
  • BPSK
    史上最详细的BPSK的源程序,下载后绝对不会让你后悔,如果喜欢点个赞哦,欢迎交流。(BPSK history of the most detailed source, will not let you download later regret it, if you like the point of a like oh, please share.)
    2014-11-13 18:53:49下载
    积分:1
  • 5
    一道程序编译顺序的考题,涉及到函数调用的先后顺序及运算符号的优先级等问题。下面我展开给你讲。 C的程序编译总是从main函数开始的,这道题的重点在“fun((int)fun(a+c,b),a-c)) ”语句。 系统首先要确定最外层 fun()函数的实参,第一个参数的确定需要递归调用fun()函数(不妨称其为内层函数)。内层函数的两个参数分别为x=a+b=2+8=10、y=b=5,执行函数体x+y=10+5=15,于是得外层函数的参数x=15。其另一个参数y=a-c=2-b=-6,再次执行函数体,得最终返回值x+y=15+(-6)=9。 (Compiling together the sequence of test procedures, involving the sequence of function calls and operator symbols, such as the priority problem. Now I give you to start speaking. Procedures for C compiler always start from the main function and at这道题the focus of " fun ((int) fun (a+ c, b), ac)) " statement. System must first determine the most outer layer of fun () function of real parameters, the first parameters of recursive calls required fun () function (may be called the inner function). Inner function separately for the two parameters x = a+ b = 2+8 = 10, y = b = 5, to execute the function body x+ y = 10+5 = 15, then the outer function parameters were x = 15 . Its another parameter y = ac = 2-b =- 6, once again to execute the function body may eventually return the value of x+ y = 15+ (-6) = 9.)
    2009-03-15 15:36:23下载
    积分:1
  • 696516资源总数
  • 106913会员总数
  • 8今日下载