代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/467324/7009755
m fm2.m
% fm2.m
% Matlab demonstration script for frequency modulation. The message signal
% is m(t)=sinc(100t).
echo on
t0=.2; % signal duration
ts=0.001;
www.eeworm.com/read/467324/7009763
m am.m
% am.m
% Matlab demonstration script for DSB-AM modulation. The message signal
% is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3 and zero otherwise.
echo on
t0=.15; %
www.eeworm.com/read/467357/7010881
m plotcorana.m
function [z, a] = coranaEval(per)
i=0;
a=-0.9:per:0.9;
sz=size(a,2);
z=zeros(sz,sz);
for x=a
i=i+1; j=0;
for y=a
j=j+1;
z(i,j)=coranaFeval([x y]);
end
end
%Done!
%First let's look at it
www.eeworm.com/read/467357/7010896
m orderbasedexample.m
echo on
% This script shows how to use the ga using an order-based representation.
% You should see the demos for
% more information as well. gademo1, gademo2, gademo3
global distMatrix
% Setting the
www.eeworm.com/read/467077/7015366
m ex.m
x1=wavread('late_cafe');
x2=x1(1:65536);
s1=auread('late_cafe_out');
s2=s1(1:65536);
%fs=128;
%t=(1:128)/128;
%c1=sin(2*pi*t*8);
%c2=sin(2*pi*t*10);
%c3=sin(2*pi*t*60);
%c4=c1+c2+c3;
%plot(c
www.eeworm.com/read/467198/7020116
m xorsurf.m
% Surface plot for XOR FIS
blackbg;
subplot(2,2,1);
xorfis = readfis('xor.fis');
gensurf(xorfis);
view([-20 55]);
set(gca, 'box', 'on');
%frot3d on
www.eeworm.com/read/466855/7022058
m exa11041.m
%-----------------------------------------------------------------
% exa110401.m 产生db2~db9正交小波的尺度函数和小波函数
%------------------------------------------------------------------
clear;
iter=8
[phi2,
www.eeworm.com/read/466855/7022085
m exa120501.m
%--------------------------------------------------------------------------
% exa120501.m, for example 12.5.1 and fig12.5.3
%-----------------------------------------------------------------------
www.eeworm.com/read/466855/7022102
m exa010201b.m
%---------------------------------------------------------------------------------------
% exa010201b.m, for example 1.2.3
% 说明信号的子带分解;
%----------------------------------------------------------
www.eeworm.com/read/466855/7022121
m exa090702.m
% -------------------------------------------------------------------
% exa090702.m, for example 9.7.2 and fig 9.7.2
% 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。
% 本程序给出的是连续小波变换的灰度图表示。
%--------------------