代码搜索: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/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/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)