代码搜索:plot
找到约 10,000 项符合「plot」的源代码
代码结果 10,000
www.eeworm.com/read/341613/12075538
m holder.m
function h=holder(tfr,f,n1,n2,t,pl)
%HOLDER Estimate the Holder exponent through an affine TFR.
% H=HOLDER(TFR,F,N1,N2,T) estimates the Holder exponent of a
% function through an affine time-frequenc
www.eeworm.com/read/341613/12075756
m 6-9.m
%例程6-9 方波信号的离散小波变换
% e.g.6-9.m for example6-9;
%test the function of wavedec.
clear all;
t=0:.01*pi:10*pi;
x=square(t,80);
X=x+randn(size(x))/10;
subplot(5,2,1:2); plot(t,X);
xlabel('Time
www.eeworm.com/read/341613/12075759
m 6-7.m
%例程6-7 方波信号的连续小波变换
% e.g.6-7.m for example6-7;
%test the function of cwt
clear all;
t=0:.01*pi:10*pi;
x=square(t,80); %The duty cycle(占空比) is 80% of the period in which the signal is positive
www.eeworm.com/read/341613/12075837
m 3-9.m
%例程3-9 产生非周期方波
t=-1:1/1E3:1;
x=tripuls(t,0.3);
y=tripuls(t,0.3,-0.8);
subplot(2,1,1);
plot(t,x);
subplot(2,1,2);
plot(t,y);
www.eeworm.com/read/341565/12077326
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/341565/12077375
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/341517/12080533
m chap3_10.m
%PD Type Fuzzy Controller Design
clear all;
close all;
ts=0.001;
sys=tf(133,[1,25,0]);
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
e_1=0;
u_1=0;u_2=0;
y_1=0;y_2=0;
for k=1:1:10
www.eeworm.com/read/341458/12083583
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/341458/12083631
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/255319/12089843
m sanzizhen.m
clear all
clc
format long
f0=500;
c=1500;
d=0.001*c/f0;
Fs=10000;
lth=1024; % length of FFT
sita=30;
SNR=-70;
count=16;
t0=d/c*sin(sita*pi/180);
S=zeros(count,lth);