代码搜索:MATlab

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

代码结果 10,000
www.eeworm.com/read/233607/14146101

txt koch matlab.txt

koch曲线的matlab程序 function kk_plot(n) if nargin==0 n=3; end a=0;b=10; y=[a,b]; while n>0 h=[];m=length(y)-1; for i=1:m x=k(y(i),y(i+1));h=[h x]; end h(end+1)=y(i+1);y=h;n=n-1; end plo
www.eeworm.com/read/131031/14163109

doc matlab应用篇.doc

www.eeworm.com/read/131029/14163111

doc matlab基础篇.doc

www.eeworm.com/read/131028/14163112

doc matlab提高篇.doc

www.eeworm.com/read/130751/14175617

gif matlab_dgy.gif

www.eeworm.com/read/232635/14187293

m matlab_in_c.m

function D=matlab_in_c(T); %该函数用来验证是否可以输出多维变量 D维多维变量输出 Distance = 0.5*(-9.8).*T.^2; plot(T,Distance);grid on; for i=1:length(T) for j=1:length(T) if j==i D(i,j)=Distance
www.eeworm.com/read/232571/14192762

cpp matlab_driver.cpp

#include "matlab_interface.h" #include void main(void) { double hf; double x[10], y[10]; int i; for(i = 0; i < 10; i++) { x[i] = (double)i; y[i] = (double)i; }
www.eeworm.com/read/232571/14192814

h matlab_interface.h

#ifndef _matlab_interface_h_ #define _matlab_interface_h_ #include "engine.h" #include "matrix.h" #include "mex.h" #include #include #include class matlab_in
www.eeworm.com/read/232571/14192855

c matlab_driver.c

#include "matlab_interface.h" void main(void) { matlab_interface mi; mi.spawn_matlab(); mi.close_matlab(); };