代码搜索:coefficient

找到约 3,200 项符合「coefficient」的源代码

代码结果 3,200
www.eeworm.com/read/181830/9235753

m subsasgn.m

function Pi = subsasgn(P,S,B) % SUBSASGN -- assignment to subscripted matrix polynomial % % This function is not meant to be called by the user. It is called by % Matlab when a subscripted matr
www.eeworm.com/read/181816/9236194

m binomial.m

function b = binomial(n,k) %BINOMIAL compute binomial coefficient % % Usage: b = binomial(n,k) % % Parameters: ( n ) % b = ( ) % ( k ) % % Author: Steve
www.eeworm.com/read/377814/9261824

m chap9_5i.m

%Three Loop of Flight Simulator Servo System with Direct Current Motor clear all; close all; %(1)Current loop L=0.001; %L
www.eeworm.com/read/180485/9305419

m program_09_3.m

% Program 9_3 % Coefficient Quantization Effects on the % Frequency Response of a Direct Form FIR Filter % fpts = [0 0.5 0.55 1]; mag = [1 1 0 0]; b = remez(39,fpts,mag); [h,w] = freqz(b,1,512);
www.eeworm.com/read/180485/9305450

m program_09_7.m

% Program 9_7 % Granular Limit Cycles in First-Order IIR Filter % clf; alpha = input('Type in the filter coefficient = '); yi = input('Type in the initial condition = '); x = input('Type in the
www.eeworm.com/read/180485/9305518

m program_06_1.m

% Program 6_1 % Factorization of a Rational Transfer Function % format long num = input('Numerator coefficient vector = '); den = input('Denominator coefficient vector = '); [z,p,k] = tf2zp(num,
www.eeworm.com/read/180485/9305542

m program_06_3.m

% Program 6_3 % Cascaded Lattice Realization of an % Allpass Transfer Function % format long den = input('Denominator coefficient vector = '); k = poly2rc(den); knew = fliplr(k); disp('The lat
www.eeworm.com/read/180414/9309000

cpp polyvaluetwodim.cpp

//PolyValueTwoDim.cpp 二维实(复)多项式求值示例 #include //输入输出流头文件 #include //多项式及连分式头文件 using namespace std; //名字空间 //求多项式p(x,y)在多点处的函数值 void main(void) { cout
www.eeworm.com/read/180414/9309106

cpp rootnewtonhilldown.cpp

//RootNewtonHillDown.cpp //牛顿下山法求解代数方程全部根(实根和复根) #include //输入输出流头文件 #include "NonLinearEquation.h" //非线性方程(组)求解头文件 using namespace std; //名字空间 void main(void) { int i, i
www.eeworm.com/read/179737/9341232

m feode2l.m

function [k]=feode2l(acoef,bcoef,ccoef,eleng) %------------------------------------------------------------------- % Purpose: % element matrix for (a u'' + b u' + c u) % using linear el