代码搜索:小波系数

找到约 10,000 项符合「小波系数」的源代码

代码结果 10,000
www.eeworm.com/read/296712/8080655

cpp 多项式.cpp

#include using namespace std; struct XPower{ int cof;//系数coefficient int power;//幂数 XPower* next; }; typedef XPower* link; class XPowerMult{//多项式multinomial private: link head;
www.eeworm.com/read/301959/13845516

m mwmp_list.m

% MWMP contains the following functions: % % coef coefficients of various multifilter banks(多重滤波器组系数) % coef_prep coefficients of various multiwavelet pre/post filters(预滤波与后滤波)
www.eeworm.com/read/220827/6299516

m integr.m

function [FY]=INTEGR(N,F) % % *** Integration Subroutine *** % % Real F(0:10,0:10), FY, D1 定义变量 % Integer N, M % SPLINE; %求出拟合系数 FY = 0
www.eeworm.com/read/410461/11286234

cpp 多项式相加.cpp

#include using namespace std; typedef int datatype; typedef struct node { float coef; /*多项式系数*/ int expn; /*多项式指数*/ struct node *next; }listnode; typedef listn
www.eeworm.com/read/409707/11315542

c uart.c

//UART0 receive char RXD_COEFFIENT=0; // 判断是否在接收修正系数标志位 char urx_data[4]; char RXDcount; // 接收到的数据个数 /*******************************************
www.eeworm.com/read/228658/14371300

m mwmp_list.m

% MWMP contains the following functions: % % coef coefficients of various multifilter banks(多重滤波器组系数) % coef_prep coefficients of various multiwavelet pre/post filters(预滤波与后滤波)
www.eeworm.com/read/125092/14513631

m mwmp_list.m

% MWMP contains the following functions: % % coef coefficients of various multifilter banks(多重滤波器组系数) % coef_prep coefficients of various multiwavelet pre/post filters(预滤波与后滤波)
www.eeworm.com/read/415196/11082293

frm form1.frm

VERSION 5.00 Begin VB.Form Form1 BorderStyle = 1 'Fixed Single Caption = "Jacobi解线性方程(注意系数主对角占优)" ClientHeight = 4050 ClientLeft = 2610 ClientTop
www.eeworm.com/read/415196/11082409

frm form1.frm

VERSION 5.00 Begin VB.Form Form1 BorderStyle = 1 'Fixed Single Caption = "Jacobi解线性方程(注意系数主对角占优)" ClientHeight = 4050 ClientLeft = 2610 ClientTop
www.eeworm.com/read/284781/8899165

m 例程9-12.m

% 设置小波函数和迭代次数 iter = 4; wav = 'sym4'; % 采用迭代算法计算小波函数和尺度函数的近似值并画图 [s,w1,w2,w3,xyval] = wavefun2(wav,iter,0);