代码搜索:查表法
找到约 10,000 项符合「查表法」的源代码
代码结果 10,000
www.eeworm.com/read/292658/8342585
cpp matrixtoeplitzinversiontrench.cpp
//MatrixToeplitzInversionTrench.cpp 特兰持(Trench)法求托伯利兹(Toeplitz)矩阵逆
#include //输入输出流
#include "Matrix.h" //矩阵类及相关函数等的定义
using namespace std; //名字空间
void main() // 定义控制台应用程序的入
www.eeworm.com/read/292658/8342636
cpp eigenvaluevectorrealsymmetryjacobi.cpp
//EigenvalueVectorRealSymmetryJacobi.cpp
//实对称阵特征值及特征向量雅可比法
#include //输入输出流头文件
#include "Matrix.h" //矩阵类及相关函数头文件
#include "EigenvalueVector.h" //特征值及特征向量头文件
using namespace
www.eeworm.com/read/392361/8348235
m exm062_8.m
%exm062_8.m
clear
clf;
dx=0.1;
x=0:dx:4;
y=x.*sin(x);
s=cumtrapz(y)*dx; %梯形法求累计积分
plotyy(x,y,x,s),
text(0.5,0,'\fontsize{14}\ity=xsinx')
sint='{\fontsize{16}\int_{\fontsize{8}0}^{ x}}';
t
www.eeworm.com/read/368108/9711505
m exm062_8.m
%exm062_8.m
clear
clf;
dx=0.1;
x=0:dx:4;
y=x.*sin(x);
s=cumtrapz(y)*dx; %梯形法求累计积分
plotyy(x,y,x,s),
text(0.5,0,'\fontsize{14}\ity=xsinx')
sint='{\fontsize{16}\int_{\fontsize{8}0}^{ x}}';
t
www.eeworm.com/read/172257/9715720
m l3_3.m
%程序L3_3.m: 向量量化器的码本的产生%
%利用LBG法产生三个不同大小与维度的码本%
load lena %读入一幅512×512的图像矩阵
th=0.1; %设定LBG程序停止训练的临界值
www.eeworm.com/read/367557/9742533
m funfminu.m
options(6)=1;%拟牛顿法的DFP公式
options(7)=0;%混合的二次型和三次型插值
[x,options]=fminu('funrosen',[-1.2,2],options)
y=options(8) %输出在最后极值点的函数值
n=options(10)%给出函数计算次数
www.eeworm.com/read/367547/9742994
txt readme.txt
互信息法求混沌序列的最优时延
文件说明:
1、Mutual_Information_main.m 主文件,直接运行此程序即可
2、LorenzData.dll 产生Lorenz离散序列
3、Mutual_Information.dll 互信息函数
4、buffer.dll 缓存文件
www.eeworm.com/read/367104/9783005
cpp eigenvaluevectorrealsymmetryjacobi.cpp
//EigenvalueVectorRealSymmetryJacobi.cpp
//实对称阵特征值及特征向量雅可比法
#include //输入输出流头文件
#include "Matrix.h" //矩阵类及相关函数头文件
#include "EigenvalueVector.h" //特征值及特征向量头文件
using namespace
www.eeworm.com/read/367101/9783043
cpp matrixtoeplitzinversiontrench.cpp
//MatrixToeplitzInversionTrench.cpp 特兰持(Trench)法求托伯利兹(Toeplitz)矩阵逆
#include //输入输出流
#include "Matrix.h" //矩阵类及相关函数等的定义
using namespace std; //名字空间
void main() // 定义控制台应用程序的入
www.eeworm.com/read/415746/11055907
m 5-8.m
%例程5-8 利用Bartlett法估计功率谱
% e.g.5-8.m for example5-8;
% to test function psd;
clear all;
% Generate the signal with noise and display
N=1024;
n=0:1/(N-1):1;
f1=0.1;
f2=0.9;
wn=randn(1,N);