代码搜索:mimo matlab
找到约 10,000 项符合「mimo matlab」的源代码
代码结果 10,000
www.eeworm.com/read/446462/7578120
dat bookinfo.dat
[General Information]
书名=电力电子和电力拖动控制系统的MATLAB仿真
作者=BEXP
SS号=
加密地址=
页数=265
下载位置=http://book8.5read.com/300-6/diskrjs/rjs498/02/!00001.pdg
www.eeworm.com/read/445831/7589518
m ip_05_07.m
% MATLAB script for Illustrated Problem 5.7.
echo on
n0=.5*randn(100,1);
n1=.5*randn(100,1);
n2=.5*randn(100,1);
n3=.5*randn(100,1);
x1=1.+n0;
y1=n1;
x2=n2;
y2=1.+n3;
plot(x1,y1,'o',x2,y2,'*
www.eeworm.com/read/445827/7589602
m ip_02_05.m
% MATLAB script for Illustrative Problem 5, Chapter 2.
echo on
% first part
Sx1=[ones(1,32)];
Rx1=ifft(Sx1,32);
% second part
Sx2=[ones(1,16),zeros(1,224),ones(1,16)];
Rx2=ifft(Sx2,256);
% pl
www.eeworm.com/read/445613/7592602
m contents.m
% FastICA for Matlab 6.x
% Version 2.3, July 27 2004
% Copyright (c) Jarmo Hurri, Hugo G鋠ert, Jaakko S鋜el
www.eeworm.com/read/445379/7595974
dat bookinfo.dat
[General Information]
书名=MATLAB遗传算法工具箱及应用
作者=
页数=261
SS号=11456588
出版日期=
www.eeworm.com/read/444931/7602570
m mysave.m
function [t, xt] = MySave(A, f,p,dt,N);
%MySave产生一个指定幅值和频率的正弦信号,并将产生正弦信号的数据写入数据文件MySin.txt.
% MySave(A, f)返回一个时间t数组和一个幅值xt数组,并将数据写入当前工作目录.
% A:幅值, f:频率,p:相位, dt:时间间隔, N:数据点数
%在命令行及其他函数调用时输入[t, xt]
www.eeworm.com/read/444586/7611374
m main_logistic.m
% Logistic 映射
% 使用平台 - Matlab6.5 / Matlab7.0
% 作者:陆振波,海军工程大学
% 欢迎同行来信交流与合作,更多文章与程序下载请访问我的个人主页
% 电子邮件:luzhenbo@yahoo.com.cn
% 个人主页:http://luzhenbo.88uu.com.cn
%
% 表达式
% x(n+1) = lambda * x(n) *
www.eeworm.com/read/443241/7635754
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/443241/7635793
m exa090804_svd.m
%-----------------------------------------------------------------------
% exa090804_svd.m, for example 9.8.4
% to test svd.m;
% 在MATLAB6.1 和 MATLAB5.3下运行该程序,所得到的 U,V矩阵稍有不同,
% 但奇异值是一样的
%---------