代码搜索:Script
找到约 10,000 项符合「Script」的源代码
代码结果 10,000
www.eeworm.com/read/424116/10491237
m makemanualsegments.m
% Script
% Example of how to make 7 manual segments for 40 samples
manualseg{1}=[1 2 3 4 5 6]';
manualseg{2}=[7 8 9 10 11 12]';
manualseg{3}=[13 14 15 16 17 18]';
manualseg{4}=[19 20]';
manual
www.eeworm.com/read/424063/10499444
m ip_04_04.m
% MATLAB script for Illustrative Problem 4, Chapter 4.
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);
end
www.eeworm.com/read/424063/10500171
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);