代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
www.eeworm.com/read/245179/12812938
txt readme.txt
Higher-Order Spectral Analysis (HOSA) Toolbox.
Version 2.0.3 (R12 compliant) 27 Dec 2000
There are three steps to installing the HOSA toolbox.
(a) Download the SETUP.EXE file to your ma
www.eeworm.com/read/331439/12828499
txt read_me.txt
Quaternion toolbox for Matlab - installation instructions
---------------------------------------------------------
To install this toolbox:
1. Unzip the distribution file and move the directory/fol
www.eeworm.com/read/331439/12828603
m plus.m
function q = plus(l, r)
% + Plus.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828613
m transpose.m
function t = transpose(a)
% .' Transpose.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828672
m minus.m
function q = minus(l, r)
% - Minus.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828768
m power.m
function Z = power(X, Y)
% .^ Array power.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828858
m ne.m
function r = ne(a, b)
% ~= Not equal.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/244945/12829699
m randn.m
%R=randn(m,n) 生成标准正态分布的m行n列随机矩阵
%RANDN Normally distributed random numbers.
% RANDN(N) is an N-by-N matrix with random entries, chosen from
% a normal distribution with mean zero and variance
www.eeworm.com/read/143759/12847092
txt readme.txt
Higher-Order Spectral Analysis (HOSA) Toolbox.
Version 2.0.3 (R12 compliant) 27 Dec 2000
There are three steps to installing the HOSA toolbox.
(a) Download the SETUP.EXE file to your ma
www.eeworm.com/read/143419/12878138
m 8.m
11.3.2 由M文件创建外部应用程序的入门算例
【例11.3.2-1】建立一个脱离MATLAB环境,可独立运行的外部程序。该程序的功能是:对于给定矩阵A,如果存在S使得S-1AS=Λ,则要求出一个S,否则给出信息说明所给的矩阵A不能对角化。
(1)
[exm2.m]
function exm2
A=[4,0,0;0,3,1;0,1,3];
S=exm2_f(A)
[exm2_f