代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
www.eeworm.com/read/459044/7283917
c ch2example16sfun_mex.c
/*
* MATLAB Compiler: 3.0
* Date: Wed Jun 27 13:19:37 2007
* Arguments: "-B" "macro_default" "-O" "all" "-O" "fold_scalar_mxarrays:on"
* "-O" "fold_non_scalar_mxarrays:on" "-O" "optimize_integ
www.eeworm.com/read/457711/7318947
m ag906.m
%《线性代数实验践及MATLAB入门》第九章例题程序ag906
% 不同坐标系的二次型曲线
% 电子工业出版社出版 陈怀琛 龚杰民合著 2005年10月
%
clear,
subplot(2,2,1)
ezplot('5*x1^2-4*x1*x2+5*x2^2=48')
axis equal,grid on
subplot(2,2,3)
ezplot('3*y1^2+7*y2^
www.eeworm.com/read/457711/7318952
m ag801.m
%《线性代数实验践及MATLAB入门》第八章例题程序ag801
% 平面上向量的绘制
% 电子工业出版社出版 陈怀琛 龚杰民合著 2005年10月
%
u=[2;4]; v=[3;-1];
plot([2,3],[4,-1],'x');hold on
drawvec(u);hold on % drawvec是ATLAST中的子程序
drawvec(v,'g');hold off
www.eeworm.com/read/457711/7319089
m ea401.m
% 《工程线性代数(MATLAB版)》第四章例题4.1程序ea401
% 陈怀琛,高淑萍,杨威合编,电子工业出版社,2007年6月
% 平面向量的绘制
%
u=[2;4]; v=[3;-1];
plot([2,3],[4,-1],'x');hold on
drawvec(u);hold on % drawvec是ATLAST中的子程序
drawvec(v,'g');hold on
www.eeworm.com/read/457711/7319097
m ea708.m
% 《工程线性代数(MATLAB版)》第七章例题7.8程序ea708
%
m1=1; m2=9; k1 = 4; k2=2; % 输入各原始参数
x0 = [1;0]; xd0 = [0;-1]; tf= 20;
M = [m1,0;0,m2]; K = [k1+k2, -k2; -k2, k2]; % 构成参数矩阵
K0=inv(M)*K
[u,L] = eig (K0
www.eeworm.com/read/457710/7319116
txt 说明.txt
本例演示了如何用matlab进行图像识别,适合对matlab和图像处理有一定基础的爱好者学习。
将文件放于matlab目录下work文件夹中运行
www.eeworm.com/read/457219/7332177
m fil.m
function [out]=fil(in,f);
%
% Filters the data using a first order filter
%
% [out]=fil(in,f);
%
% f is a vector containing the filter constants
%
% Updated to use MATLAB's built in filter rou
www.eeworm.com/read/456354/7351280
txt readme.txt
MATLAB files for
Contemporary Communication Systems with MATLAB
==============================================
John G. P
www.eeworm.com/read/456354/7351333
m ip_01_01.m
% MATLAB script for Illustrative Problem 1, Chapter 1.
n=[-20:1:20];
x=abs(sinc(n/2));
stem(n,x);