代码搜索:MATLAB

找到约 10,000 项符合「MATLAB」的源代码

代码结果 10,000
www.eeworm.com/read/366144/9828634

html installation.html

www.eeworm.com/read/365527/9858508

c engdemo.c

/* $Revision: 1.8.4.1 $ */ /* * engdemo.c * * This is a simple program that illustrates how to call the MATLAB * Engine functions from a C program. * * Copyright 1984-2003 The MathWorks,
www.eeworm.com/read/365527/9858538

c mexevalstring.c

/*================================================================= * mexevalstring.c * * mexevalstring takes no input arguments. It uses mexEvalString to * turn warnings off in MATLAB. It the
www.eeworm.com/read/364809/9894487

rc curvefit.rc

1 TYPELIB "D:/MATLAB7/work/curvefit//src\\curvefit_idl.tlb"
www.eeworm.com/read/168718/9900009

dat bookinfo.dat

[General Information] 书名=小波变换及其MATLAB工具的应用 作者= 页数=156 SS号=10505158 出版日期=
www.eeworm.com/read/362951/9973400

cpp qrdecomp.cpp

// // MATLAB Compiler: 3.0 // Date: Fri Aug 26 16:33:02 2005 // Arguments: "-B" "macro_default" "-O" "all" "-O" "fold_scalar_mxarrays:on" // "-O" "fold_non_scalar_mxarrays:on" "-O" "optimize_integ
www.eeworm.com/read/167045/9983272

readme

To install: uncompress deconv.tar.z (if necessary) tar -xvf deconv.tar To run: cd deconv matlab deconv (from the matlab prompt >>) To run earlier versions (in Ver# dirs), first cp DATA/*.mat Ver
www.eeworm.com/read/362199/10013162

readme

The KNN code was downloaded from http://neural.cs.nthu.edu.tw/jang/matlab/demo
www.eeworm.com/read/166306/10024607

m rand.m

%R=rand(m,n) 生成(0,1)上均匀分布的m行n列随机矩阵 %RAND Uniformly distributed random numbers. % RAND(N) is an N-by-N matrix with random entries, chosen from % a uniform distribution on the interval (0.0,1.0
www.eeworm.com/read/166190/10029877

m f52.m

num1=[1,1];den1=conv([1,0],[1,1,1]);sys1=tf(num1,den1);%sys1的MATLAB表达 num2=[2,3];den2=conv([1,1],[1,1]);sys2=tf(num2,den2); %sys2的MATLAB表达 num3=[6,5];den3=[2,3];sys3=tf(num3,den3);