代码搜索:mimo matlab
找到约 10,000 项符合「mimo matlab」的源代码
代码结果 10,000
www.eeworm.com/read/319871/13440803
c engexam.c
#include
#include
#include
#include "engine.h"
int PASCAL WinMain (HANDLE hInstance,
HANDLE hPrevInstance,
LPSTR lpszCmdLine,
int nCm
www.eeworm.com/read/319871/13440817
m exm1273_1.m
%exm1273_1.m
!md d:\mywork
cd d:\mywork
ss=char(which('engexam.c','-all'));
dos(['copy ',ss,' d:\mywork']);
mex -f h:\matlab\bin\bccengmatopts.bat engexam.c
!engexam
!del engexam.c
www.eeworm.com/read/319871/13440895
c my_yprime.c
/*=================================================================
*
* YPRIME.C Sample .MEX file corresponding to YPRIME.M
* Solves simple 3 body orbit problem
*
* The calling synt
www.eeworm.com/read/319474/13451153
txt readme.txt
Updated: January 11, 2002
To execute the Matlab version simply execute gui.m
Enjoy.
Greg Welch
www.eeworm.com/read/319404/13452311
m ex0404.m
%例4-4 通过MATLAB函数获取多维数组的属性
A = cat(4, [9 2; 6 5], [7 1; 8 4]);
size(A) %获取数组A的尺寸属性
ndims(A) %获取数组A的维度属性
whos %显示当前工作区中各个变量的名称、尺寸、内存占用等信息
www.eeworm.com/read/319404/13452349
m ex0707.m
%例7-7 字符串的查找
a='Welcome to MATLAB!';
b='Welcome,Sir!';
c='Welcome';
ab=strcat(a,b)
strfind(ab,c) %strfind中长字符串在前,否则返回空数组
strfind(c,ab)
findstr(ab,c) %findstr中两个字符串位置可变
findstr(c,ab)
strmatch(