代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
www.eeworm.com/read/465867/7047805
m ex203.m
%********************************************************
%程序:EX203.M
%功能:MATLAB中曲线线型、颜色和标记点类型使用实例
%********************************************************
x=0:pi/20:2*pi; %定义x坐标轴范
www.eeworm.com/read/465406/7054692
txt readme.txt
在matlab中,设置当前的目录为工作目录,在命令行中输入fpextractdemo,即可运行程序。
www.eeworm.com/read/221007/7074575
m ex3_23.m
X=input('Enter X:');
E=zeros(size(X));
F=eye(size(X));
n=1;
while norm(F,1)>0
E=E+F;
F=F*X/n;
n=n+1;
end
E
xpm(X) %调用MATLAB矩阵指数函数求矩阵指数
www.eeworm.com/read/427515/7095569
m packr.m
function y=packr(x)
% PACKR
% PACKR(x) deletes all the rows of x that contain a MATLAB missing element (NaN)
t=isnan(x);
c=sum(t')'==0;
y=x(c==1,:);
www.eeworm.com/read/286802/7107660
m contents.m
% FastICA for Matlab 7.x and 6.x
% Version 2.5, October 19 2005
% Copyright (c) Hugo G鋠ert, Jarmo Hurri, Jaakko S鋜el
www.eeworm.com/read/145388/7125274
txt intro.txt
Tutorial on solving BVPs.
Solving Boundary Value Problems for ODEs with BVP4C. Tutorial + Examples.
This tutorial shows how to formulate, solve, and plot the solutions of
boundary value prob