代码搜索:coefficient
找到约 3,200 项符合「coefficient」的源代码
代码结果 3,200
www.eeworm.com/read/199774/7823409
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/299869/7827527
m exa050904_latcfilt.m
% ------------------------------------------------------------------------------
% exa050904_latcfilt.m , for example 5.9.4
%to test latcfilt.m and to realize filtering with LATTICE coefficient.
%
www.eeworm.com/read/399533/7849762
m exa050904_latcfilt.m
% ------------------------------------------------------------------------------
% exa050904_latcfilt.m , for example 5.9.4
%to test latcfilt.m and to realize filtering with LATTICE coefficient.
%
www.eeworm.com/read/433381/7933911
cpp polyvaluetwodim.cpp
//PolyValueTwoDim.cpp 二维实(复)多项式求值示例
#include //输入输出流头文件
#include //多项式及连分式头文件
using namespace std; //名字空间
//求多项式p(x,y)在多点处的函数值
void main(void)
{
cout
www.eeworm.com/read/433381/7934181
cpp rootnewtonhilldown.cpp
//RootNewtonHillDown.cpp
//牛顿下山法求解代数方程全部根(实根和复根)
#include //输入输出流头文件
#include "NonLinearEquation.h" //非线性方程(组)求解头文件
using namespace std; //名字空间
void main(void)
{
int i, i
www.eeworm.com/read/298649/7947721
m coef2b.m
function [b]=coef2b(coefs,thsize);
%
% [b]=coef2b(coefs,thsize);
%
% Converts a coefficient string into a bias
% vector
%
% b = returned bias vector
% coefs = coefficient string
% thsize = nu
www.eeworm.com/read/297942/7984709
m ref_coef.m
function [rh,rv,ph,pv] = ref_coef (epsp,epspp)
eps = epsp - i * epspp; %65.0-30.7i;
psi = 0:0.1:90;
psirad = psi.*(pi/180.);
arg1 = eps-(cos(psirad).^2);
arg2 = sqrt(arg1);
arg3 = sin(psirad);
www.eeworm.com/read/398337/7993713
m svmclasslib.m
function [xsup,w,b]=svmclasslib(x,y,C,lambda,kernel,kerneloption,verbose,span)
% USAGE
%
% [xsup,w,b]=svmclasslib(x,y,C,lambda,kernel,kerneloption)
%
% simple interface to SVM LIB code for C-
www.eeworm.com/read/398337/7993717
m svmvallib.m
function ypred=svmvallib(x,xsup,w,b,kernel,kerneloption,span)
% USAGE
%
% ypred=svmvallib(x,xsup,w,b,kernel,kerneloption,span)
%
switch kernel
case 'gaussian'
kernel
www.eeworm.com/read/197407/7998249
h poly2.h
// univariate polynomials
// each polynomial is represented as a circular linked list
// with a head node
#ifndef CPolynomial_
#define CPolynomial_
#include
#include