代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
www.eeworm.com/read/447020/7560345
m ncsetstr.m
function theResult = ncsetstr(x)
% ncsetstr -- SETSTR for NetCDF character data.
% ncsetstr(x) converts values x to unsigned-characters
% in the range 0:255, for use by Matlab. Beginning
%
www.eeworm.com/read/445830/7589531
m ip_04_04.m
% MATLAB script for Illustrative Problem 4.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/445823/7589628
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/445823/7589636
asv ip_01_01.asv
% MATLAB script for Illustrative Problem 1, Chapter 1.
%|xn|和角度xn与n的关系曲线就是x(t)的离散频谱
n=[-20:1:20];
x=abs(sinc(n/2));
stem(n,x);
www.eeworm.com/read/444759/7607496
m 7-17.m
%例程7-17 双极性归零码
%双极性归零码的MATLAB程序实现如下:
function y=drz(x) %x为二进制序列,y为编码输出
grid=100;
t=0:1/grid:length(x); %时间序列
for i=1:length(x)
www.eeworm.com/read/442447/7651417
m ip_04_04.m
% MATLAB script for Illustrative Problem 4.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/442441/7651703
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/442441/7651711
asv ip_01_01.asv
% MATLAB script for Illustrative Problem 1, Chapter 1.
%|xn|和角度xn与n的关系曲线就是x(t)的离散频谱
n=[-20:1:20];
x=abs(sinc(n/2));
stem(n,x);
www.eeworm.com/read/439811/7701425
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/439811/7701473
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