搜索资源列表
functionz1
- 寻找三次样条多项式需要求解大量的线性方程。实际上,给定N个断点,就要寻找N-1个三次多项式,每个多项式有4个未知系数。这样,所求解的方程组包含有4*(N-1)个未知数。把每个三次多项式列成特殊形式,并且运用各种约束,通过求解N个具有N个未知系数的方程组,就能确定三次多项式。 -find cubic spline solving polynomial need a lot of linear equations. In fact, given N breakpoints, it is nece
sdir2cas
- s平面中直接形式到级联形式的转换 %适合模拟滤波器的 %C为增益系数 %B为包含各bk的K乘3维实系数矩阵 %A为包含各ak的K乘3维实系数矩阵 %b为直接形式的分子多项式系数 %a为直接形式的分母多项式系数
freqz_m
- 求取系统的绝对幅度响应、相对的db值幅度响应、相位响应和群延时响应的函数 % %db为相对振幅(dB) %mag为绝对振幅 %pha为相位响应 %grd为群延时 %w为频率样本点向量 %b为Ha(z)分子多项式系数(对FIR而言,b=h) %a为Hz(z)分母多项式系数(对FIR而言,a=1) %-strike rate system in response to the absolute and relative value range db respons
pzplot
- %绘制系统函数的零极点图 % %pzplot(num,den) %num为系统函数分子多项式的系数向量 %den为系统函数分母多项式的系数向量 %
dir2cas
- 直接型到级联型的形式转换 % [b0,B,A]=dir2cas(b,a) %b 为直接型的分子多项式系数 %a 为直接型的分母多项式系数 %b0为增益系数 %B 为包含各bk的K乘3维实系数矩阵 %A 为包含各ak的K乘3维实系数矩阵 %-directly to the cascade-type conversion in the form of%% [belts, B, A] = dir2cas (b, a)% b-to direct the molecular p
shuxuejianmo_8.rar
- (拟合) 用给定的多项式,y=x3-6x2+5x-3,产生一组数据(xi,yi,i=1,2,…,n),再在yi上添加随机干扰(可用rand产生(0,1)均匀分布随机数,或用rands产生N(0,1)分布随机数),然后用xi和添加了随机干扰的yi作的3次多项式拟合,与原系数比较。 如果作2或4次多项式拟合,结果如何? ,(Fitting) with a given polynomial, y = x3-6x2+5 x-3, generated a set of data (xi, yi, i
resid2wp
- matlab有理分式多项式展开系数计算程序-matlab
duoxiangshi
- 输入两个多项式的系数,对两多项式相加,输出和多项式-Enter two polynomial coefficients, the sum of the two polynomials, the output and polynomial
test6
- matlab实验 用给定的多项式,y=x3-6x2+5x-3,产生一组数据(xi,yi,i=1,2,…,n),再在yi上添加随机干扰(可用rand产生(0,1)均匀分布随机数,或用rands产生N(0,1)分布随机数),然后用xi和添加了随机干扰的yi作的3次多项式拟合,与原系数比较。 如果作2或4次多项式拟合,结果如何? -matlab experiment with a given polynomial, y = x3-6x2+5 x-3, generated a set of da
ChebyshevExpansion
- 给定一个普通多项式p(x),用列向量表示,阶次从高到低排列,此函数返回p(x)的切比雪夫多项式展开的系数,返回的的结果也是一个列向量,同样按切比雪夫多项式的阶次从高到低排列 另外该函数用cos(x)项傅里叶级数展开一个多项式- ChebyshevExpansion.m by David Terr, Raytheon, 5-26-04 Given a polynomial f(x) of degree n expressed as a row vector of c
Mtb011
- 多项式曲线拟合其中, x, y为已知数据点向量, 分别表示横,纵坐标, m为拟合多项式的次数, 结果返回m次拟合多项式系数, 从高次到低次存放在向量p中. -Polynomial curve fitting where, x, y as the vector of known data points, respectively, horizontal and vertical coordinates, m is the number of polynomial fitting, the re
exa050501
- 设计滤波器:设定10个零点,计算出多项式系数,作为滤波器系数; 取出绝对值较大的一半零点,重新设计滤波器;用剩下的绝对值较小的一半零点,重新设计滤波器。-Design a filter: Set of 10 zeros, calculate the polynomial coefficients as filter coefficients remove the larger half of the absolute value of zero, re-design filter with
prbs-matlab
- 基于Matlab 平台根据反馈数字逻辑给出了m 序列的计算机生成源程序和m 序列的基本性质的考察代码。可根据输入的八进制 本原多项式系数生成相应的m 序列。上机结果验证了程序的正确性和有效性-Matlab-based platform based on feedback digital logic m-sequence are given computer-generated source code and the basic properties of m-sequence code vi
zernike
- zernike 多项式系数拟合 可恢复波面数据-zernike fit polynomial coefficients
CRC_Check_sv2
- 运用matlab实现CRC编码。输入任意二进制数据,输出相应CRC编码。可选择CRC-12,CRC-16,CRC-CCIT 或者自己输入多项式系数。-CRC coding using matlab realize. Arbitrary binary data input, the output corresponding CRC encoding. Optional CRC-12, CRC-16, CRC-CCIT or enter your own polynomial coefficient
fit_demo
- 多项式和非多项式曲线拟合,多项式拟合在matlab中可以使用polyfit函数求解多项式系数,通过polyval函数求解拟合多项式在某数据点处的值-Polynomial and non-polynomial curve fitting, polynomial fitting in matlab polyfit function can be used to solve polynomial coefficients, solve the value of a data point to fit
polynomial model
- 使用多项式拟合非线性曲线,对多项式系数进行参数辨识(The polynomial coefficients are identified by using polynomial fitting nonlinear curves.)
牛顿插值法
- 利用牛顿插值法获取多项式系数,同时绘制插值函数和原函数对比图(Obtaining polynomial coefficients by Newton interpolation method and draw the comparison diagram of the interpolation function and the original function at the same time)
zernike
- 计算泽尼克多项式和具有一致相合函数的泽尼克拟合系数(Zernike polynomials are orthogonal on the unit circle and are commonly used in optics for phase aberrations. Use zernike_fcn3.m to generate Zernike polynomials. Input includes a vector of the desired polynomials; these do n
本原多项式
- 本原多项式是近世代数中的一个概念,是唯一分解整环上满足所有系数的最大公因数为1的多项式,利用matlab代码产生本原多项式。