代码搜索:mimo matlab
找到约 10,000 项符合「mimo matlab」的源代码
代码结果 10,000
www.eeworm.com/read/463748/7176035
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/463564/7178218
m samp2_8.m
%Samp2_8
x=-10:0.1:10; %给出自变量序列值
y=sin(pi*x+eps)./(pi*x+eps); %给出sinc函数的离散序列值,eps是MATLAB系统的精度,这里防止被零除
plot(x,y) %绘图
xlabel('t')
ylabel('sinc(t)')
www.eeworm.com/read/463378/7182708
m bppfault.m
% 在MATLAB6.5下编程
tic, % 开始计时
[P,T,R,S1,S2,S]=nninit; % BP网络初始化
% 生成BP网络
net = newff(minmax(P),[S1 S2],{'logsig' 'logsig'},'trainlm');
% BP网络训练的参数设置
net.trainParam.epochs = 3000;
net.trainParam.g
www.eeworm.com/read/462042/7211818
txt 代码7-1.txt
clear all; % 清空内存
close all; % 关闭窗口
clc; % 英文Clear Command Window的缩写,清空命令窗口
% 上面的命令是回收MATLAB占用的系统资源,为后面的程序提供准备。
x=-10:0.1:10;
y=x;
[X,Y]=meshgrid(
www.eeworm.com/read/462042/7211827
txt 代码17-8.txt
function intrec(Z)
%INTREC 实现数学形态学字符识别
A= imread ('zero.bmp');%将0字符图像读入到MATLAB中
B= imread ('one.bmp'); %将1字符图像读入到MATLAB中
C= imread ('two.bmp'); %将2字符图像读入到MATLAB中
D= imread ('three.bmp'); %将3字符
www.eeworm.com/read/462042/7211853
txt 代码27-18.txt
function foo(x,y) % MATLAB的没有foo.m文件,只是打个比方举个例子
if nargin ~= 2 % 请根据自己的程序进行调试
error('Wrong number of input arguments')
end
www.eeworm.com/read/461983/7213382
asv program2_1.asv
%MATLAB Program2_1a
%系统的状态转移矩阵
syms s t
A=[-23/3 -22/3 -2/3;1 0 0;0 1 0];
FS=inv(s*eye(3)-A);
eAt=ilaplace(FS,s,t);
eAt=simplify(eAt)
%系统阶跃响应解析解
S=dsolve('Dv=-7.*v-(22/3)*w-(2/3)*z+1,Dw=v,
www.eeworm.com/read/461983/7213387
m program2_2c_2.m
%MATLAB Program2_2c_2
A=[0 1 0;0 0 1;-2 -4 -3];
B=[1 0;0 1;-1 1];
C=[0 1 -1;1 2 1];
D=[0 0; 0 0];
t=0:0.01:16;
[YY1,XX1]=step(A,B,C,D,1,t);
[YY2,XX2]=step(A,B,C,D,2,t);
y1=YY1(:,1)+YY2(:,1);
www.eeworm.com/read/461983/7213392
asv program2_2c_2.asv
%MATLAB Program2_2c_2
A=[0 1 0;0 0 1;-2 -4 -3];
B=[1 0;0 1;-1 1];
C=[0 1 -1;1 2 1];
D=[0 0; 0 0];
T=0:0.01:4;
[YY1,XX1]=step(A,B,C,D,1,t);
[YY2,XX2]=step(A,B,C,D.2,t);
y1=YY1(:,1)+YY2(:,1);
y
www.eeworm.com/read/461983/7213393
asv program3_4.asv
%MATLAB Program3_4
%
A=[4 1 0 0;0 4 1 0;0 0 4 1;0 0 0 4];
B=[0 0;1 2;0 0;2 1];
C=[1 0 2 0;2 0 4 2];
D=[0 0;0 0];
Qc=ctrb(A,B);
n=rank(Qc);
L=length(A);
if n ==L
str='系统是状态完全能控的'
else