代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/474586/6813176
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
www.eeworm.com/read/473505/6845087
m ex22.m
%《<mark>MATLAB</mark>及其在理工课程中的应用指南》第二章第二节演示程序
% 西安电子科技大学出版社出版 陈怀琛编著 1999年10月初版,2004年11月第二版
%
echo off
pause,disp('矩阵中每一个元素取同样的显示格式')
pause,disp('矩阵中元素都很大或很小时,自动取出10的幂次公因子。')
pause,disp('矩阵中元素量级差很大时,小数将显示为0. ...
www.eeworm.com/read/473505/6845113
m ex514.m
%《MATLAB及其在理工课程中的应用指南》第五章例5-1-4程序
% 曲线族的绘制
% 西安电子科技大学出版社出版 陈怀琛编著 1999年10月初版,2004年11月第二版
%
x=-2:0.1:2; % 给定x数组,确定范围及取点密度
subplot(1,2,1) % 分两个画面绘图
for c=-3:3 plot(x,x.^3+c*x),hold on, en
www.eeworm.com/read/473505/6845144
m ex733.m
%《MATLAB及其在理工课程中的应用指南》(第二版)第七章例7-3-3程序
% 二自由度无阻尼振动的传统建模和解耦求解程序
% 西安电子科技大学出版社出版 陈怀琛编著 1999年10月初版,2004年11月第二版
%
m1=1; m2=9; k1 = 4; k2=2; % 输入各原始参数
x0 = [1;0]; xd0 = [0;-1]; tf= 20;
M = [m1,0
www.eeworm.com/read/471460/6894079
m dfpek.m
% State variable representation of the multimachine system
% during fault. (for use with trstab)
% Copyright (c) 1998 by H. Saadat
function xdot = dfpek(t,x)
global Pm f H E Y th ngg
Pe=zeros(
www.eeworm.com/read/471460/6894100
m afpek.m
% State variable representation of the multimachine system
% after fault. (for use with trstab)
%
% Copyright (C) 1998 H. Saadat
function xdot = afpek(t,x)
global Pm f H E Y th ngg
Pe=zeros
www.eeworm.com/read/471460/6894149
m cctime.m
% This function Simulates the swing equation of a one-machine system
% and returns the critical clearing time for stability.
%
% Copyrigth (C) 1998 H. Saadat
%
function cctime(Pm, E, V, X1, X2,
www.eeworm.com/read/295657/8147949
m c5ex5.m
% Illustration of the symbolic toolbox of MATLAB
% to implement the delay theorem
%
syms t
x0 = sym('Heaviside(t-0)');
x1 = sym('Heaviside(t-1)');
x2 = sym('Heaviside(t-2)');
x3 = sym('Heaviside(t-3)'
www.eeworm.com/read/395688/8160133
m exa090702.m
% -------------------------------------------------------------------
% exa090702.m, for example 9.7.2 and fig 9.7.2
% 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。
% 本程序给出的是连续小波变换的灰度图表示。
%--------------------
www.eeworm.com/read/295456/8160992
txt~ readme.txt~
Kalman filter toolbox written by Kevin Murphy, 1998.
See http://www.ai.mit.edu/~murphyk/Software/kalman.html for details.
This version was last updated on 18 January 2003.
Installation
------------