代码搜索:plot

找到约 10,000 项符合「plot」的源代码

代码结果 10,000
www.eeworm.com/read/155266/11887159

m kalman2d.m

%***********************************************************************% %***********************15阶系统的秩和kalman滤波************************% %*********************************************************
www.eeworm.com/read/155223/11888865

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/155223/11888930

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/257997/11896965

m ws1.m

x=-2:0.01:2; y=-0.5.*x.^2+0.25.*x.^4; plot(x,y);grid; xlabel('x');ylabel('V(x)'); title('the bistable curve');
www.eeworm.com/read/257997/11896972

asv ws2.asv

p=0.1;N=500000; u=randn(1,N);c=sqrt(p); u=u*c;power_u=var(u); figure(1) subplot(221) plot(u(1:100));grid; ylabel('u(n)'); title('the Gaussian white noise'); n=200; step=4*pi/n; t=-3*pi:ste
www.eeworm.com/read/257997/11896974

m ws2.m

p=0.1;N=500000; u=randn(1,N);c=sqrt(p); u=u*c;power_u=var(u); figure(1) subplot(221) plot(u(1:100));grid; ylabel('u(n)'); title('the Gaussian white noise'); n=200; step=4*pi/n; t=-3*pi:ste
www.eeworm.com/read/155069/11900015

m mydft.m

function a=mydft(n,t) a=0:t:n*t; b=exp(-a); c=fft(b); d=abs(c)*t; f=angle(c)/t; plot(f,d,'--rs'); hold m=i*f-1; l=f.^2+1; e=m./l; g=abs(e); plot(f,g)
www.eeworm.com/read/257899/11909033

m five.m

clc;clear; load m5_1.dat; % 第一问 for i=1:200 x=rand(1,1); for j=1:100 y(j)=(m5_1(j)-3*exp(x))^2; if j==1 continue; else y(j)=y(j)+y(j-1
www.eeworm.com/read/257806/11911408

m exa11041.m

%----------------------------------------------------------------- % exa110401.m 产生db2~db9正交小波的尺度函数和小波函数 %------------------------------------------------------------------ clear; iter=8 [phi2,
www.eeworm.com/read/257806/11911477

m exa120501.m

%-------------------------------------------------------------------------- % exa120501.m, for example 12.5.1 and fig12.5.3 %-----------------------------------------------------------------------