代码搜索:mimo matlab

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

代码结果 10,000
www.eeworm.com/read/461983/7213394

m program3_4.m

%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]; %判断系统的能控性 Qc=ctrb(A,B); n=rank(Qc); L=length(A); if n ==L str='系统是状态完全能控的' else
www.eeworm.com/read/461800/7219236

m str2cod.m

%ASCII码转换成二进制码 function x=str2cod(s); if nargin
www.eeworm.com/read/461771/7220759

m str2cod.m

%ASCII码转换成二进制码 function x=str2cod(s); if nargin
www.eeworm.com/read/461039/7235545

m pathdef.m

function p = pathdef %PATHDEF Search path defaults. % PATHDEF returns a string that can be used as input to MATLABPATH % in order to set the path. % Copyright 1984-2000 The MathWorks,
www.eeworm.com/read/460475/7249556

htm ch1_3.htm

认识你/你的电脑工作环境
www.eeworm.com/read/460475/7249617

htm ch2_7_1.htm

如何在自己的目录执行程式
www.eeworm.com/read/460475/7249618

htm ch2_2_1.htm

MATLAB 的视窗环境
www.eeworm.com/read/460475/7249619

htm ch2_1.htm

什么是MATLAB
www.eeworm.com/read/460016/7259026

m 例11-14 .m

/* * engdemo.c */ #include #include #include //engine.h中包含有使用计算引擎时要用的函数声明 #include "engine.h" #define BUFSIZE 256 int main() { Engine *ep; mxA
www.eeworm.com/read/460016/7259061

m 例2-62.m

>> fn='2*exp(-x)*sin(x)'; %定义fn函数 >> xmin=fminbnd(fn,2,5) %在区间(2,5)之间寻找最小值 >> emin=5*pi/4-xmin %求最小值的误差 >> x=xmin; %令x为最小值点 >> ymin=eval(fn)