代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
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);
www.eeworm.com/read/456354/7351359
m ip_04_04.m
% MATLAB script for Illustrative Problem 4, Chapter 4.
echo on ;
a=[-10,-5,-4,-2,0,1,3,5,10];
for i=1:length(a)-1
y(i)=centroid('normal',a(i),a(i+1),0.001,0,1);
echo off ;
end
www.eeworm.com/read/456209/7353810
svn-base std.sci.svn-base
function y = std(x,a)
// std - for matlab compatibility
if argn(2)==1
y = stdev(x);
else
y = stdev(x,a);
end
endfunction
www.eeworm.com/read/456209/7353847
sci std.sci
function y = std(x,a)
// std - for matlab compatibility
if argn(2)==1
y = stdev(x);
else
y = stdev(x,a);
end
endfunction