代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
www.eeworm.com/read/415086/11084412
m colsum.m
% Sum of the columns of a. Matlab's 'sum' does the wrong thing when a has only one row
function a = colsum(a)
if size(a, 1) > 1
a = sum(a);
end
www.eeworm.com/read/269450/11097616
c simpleeng.c
/*necessory header file*/
#include "engine.h"
#include "stdio.h"
#include "conio.h"
#define BUFFERLEN 256
/*main function*/
void main()
{
Engine *ep;
char cmd[BUFFERLEN];
int i=0
www.eeworm.com/read/414751/11103862
hlp tools.hlp
-----------------------------------------------------------------
FDC 1.2 contains some analytical tools for the evaluation of
aircraft stability and control, which have been implemented in
Matlab
www.eeworm.com/read/414455/11111339
m ip_01_01.m
% MATLAB script for Illustrative Problem 1, Chapter 1.
clear
n=[-20:1:20];
x=abs(sinc(n/2));
stem(n,x);
www.eeworm.com/read/414455/11111423
m ip_04_04.m
% MATLAB script for Illustrative Problem 4.4.
clear
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/414162/11125877
m exa090702.m
% -------------------------------------------------------------------
% exa090702.m, for example 9.7.2 and fig 9.7.2
% 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。
% 本程序给出的是连续小波变换的灰度图表示。
%--------------------
www.eeworm.com/read/268529/11136236
txt~ readme.txt~
Hidden Markov Model (HMM) Toolbox written by Kevin Murphy (1998).
See http://www.ai.mit.edu/~murphyk/Software/hmm.html for details.
Installation
------------
1. Install netlab from http://www.ncrg.a
www.eeworm.com/read/268231/11148922
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/268231/11148967
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