代码搜索:Matlab;trainning

找到约 10,000 项符合「Matlab;trainning」的源代码

代码结果 10,000
www.eeworm.com/read/157298/11721221

m exa110701_pwelch.m

%------------------------------------------------------------------------- % exa1100701_pwelch.m, for example 11.7.1 and fig. 11.5.1(d) % to estimate the PSD of x(n) by Welch average; %------------
www.eeworm.com/read/157298/11721228

m exa090804_svd.m

%----------------------------------------------------------------------- % exa090804_svd.m, for example 9.8.4 % to test svd.m; % 在MATLAB6.1 和 MATLAB5.3下运行该程序,所得到的 U,V矩阵稍有不同, % 但奇异值是一样的 %---------
www.eeworm.com/read/346772/11723739

m 用 welch 平均估计试验数据的功率谱.m

%------------------------------------------------------------------------- % exa1100701_pwelch.m, for example 11.7.1 and fig. 11.5.1(d) % to estimate the PSD of x(n) by Welch average; %------------
www.eeworm.com/read/346772/11723792

m exa090804_svd.m

%----------------------------------------------------------------------- % exa090804_svd.m, for example 9.8.4 % to test svd.m; % 在MATLAB6.1 和 MATLAB5.3下运行该程序,所得到的 U,V矩阵稍有不同, % 但奇异值是一样的 %---------
www.eeworm.com/read/260339/11731365

txt 使用说明.txt

使用说明: 系统要求:WIN9X/ME/NT/2000 VC++6.0 且安装了VC ACTIVEX控件(在VC6安装时选上) 免费 简介:在VC++6.0中用MSComm控件编程,可以实现串口接收数据和发送数据,数据分别显示在接收框和发送框中。 如何建立工程:建立新文件夹,将文档用WINZIP解压后,双击 Scommtest.dsw 即可在VC6.0中打开工程文件。 ...
www.eeworm.com/read/156874/11757633

txt 05-23.txt

%接上题 >> A{1} ans = 1 2 2 2 >> A{2} ans = Tsinghua and Peking >> A{3} ans = MATLAB 7.1 >> A{4} ans = 1.0000 + 5.0000i 12.0000 - 4.0000i >>
www.eeworm.com/read/156874/11757972

txt 07-15.txt

例7-15 使用finverse函数进行反函数运算。 解:在命令窗口中输入如下命令,并按Enter键确认。 >> syms x y >> f = x^2+y] >> f = x^2+y f = x^2+y >> finverse(f,y) ans = -x^2+y >> finverse(f) Warning: finverse(x^2+y) is not un
www.eeworm.com/read/156874/11758030

txt 10-21.txt

%例10-21 nargin函数的初级使用方法。 %本程序实现如下功能,当调用过程时小于或等于一个变量时,系统提示错误的输入,当有两个变量时,程序将两个数相加,当有3个变量时,将前两个数相加并减去第3个。程序如下。 function d=nargintest(a,b,c) if nargin
www.eeworm.com/read/156874/11758042

txt 10-27.txt

%例10-27 本例调用一个函数plotfhandle,传递一个MATLAB 7.1内置的sin函数给该函数,然后,由plotfhandle调用plot函数,将数据和sin的函数句柄传递给它。 plot 函数调用与该句柄相关的函数来绘制曲线。 function x = plotFHandle(fhandle, data) plot(data, fhandle(data)) %在命令窗口中调
www.eeworm.com/read/156874/11758057

txt 10-35.txt

%例10-35 MATLAB中显示当前日期和时间。 %ATLAB 7.1中输入上述时间函数,并按Enter键确认。 >> T=clock >> %以上是以向量形式表示的本书这一部分编写时所处的时间,即2004年9月16号14时58分第9.2秒。 >>date %以上是编写本身这一部分的日期。 >> now %以上是以双精度数据表示的当前的日期和时间。 >>calen