代码搜索:plot

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

代码结果 10,000
www.eeworm.com/read/259886/11759418

m demogrn1.m

%% GRNN Function Approximation % This demonstration uses functions NEWGRNN and SIM. % % Copyright 1992-2002 The MathWorks, Inc. % $Revision: 1.7 $ $Date: 2002/04/14 21:26:43 $ %% % Here are e
www.eeworm.com/read/259886/11759577

m demop4.m

%% Outlier Input Vectors % A 2-input hard limit neuron is trained to classify 5 input vectors into two % categories. However, because 1 input vector is much larger than all of the % others, traini
www.eeworm.com/read/345952/11777872

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/345952/11777910

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/259565/11781852

m s_wplot_with_header.m

function aux=s_wplot_with_header(seismic,varargin) % Function plots one or more header values above a seismic data set in % wiggle-trace format % % Written by: E. R.: August 1, 2005 % Last updated: M
www.eeworm.com/read/156528/11794533

m kalman_mud.m

clear; T=2; A=[1 T 0 0;0 1 0 0;0 0 1 T;0 0 0 1]; G=[T 0;1 0;0 T;0 1]; H=[1 0 0 0;0 0 1 0]; vx=-15; vy=-15; t=400; alldot=t/T; i=1:t/T; rx=2000+vx*i*T; ry=10000+vy*i*T; q=1; Q=[q 0;0 q];
www.eeworm.com/read/156528/11794813

asv 11.asv

n=1000; t=1:n; s(1,:)=sin(t); s(2,:)=cos(t); A=rand(2); subplot(2,1,1) plot(t,s(1,:)) subplot(2,1,2) plot(t,s(2,:)) x=A*s; xt(1,:)=filter(ones(1,5)/5,1,x(1,:)); xt(2,:)=filter(ones(1,5)/5,1
www.eeworm.com/read/156528/11794820

m 11.m

n=1000; t=1:n; s(1,:)=sin(t); s(2,:)=cos(t); A=rand(2); subplot(2,1,1) plot(t,s(1,:)) subplot(2,1,2) plot(t,s(2,:)) x=A*s; xt(1,:)=filter(ones(1,5)/5,1,x(1,:)); xt(2,:)=filter(ones(1,5)/5,1
www.eeworm.com/read/156528/11794832

asv exinfomax.asv

function [s,x,y,PI]=ExInfomax() % %扩展信息最大化 %编程时间:2006.1.12 %作者:张小兵 %*********初始化程序****************** fs=8000; f=14.324; load chirp; y=y(1:1000); k=1:1000; s1=sin(2*pi*f*k/fs); s2=y';
www.eeworm.com/read/156528/11794847

m exinfomax.m

function [y,PI]=ExInfomax(x) % %扩展信息最大化 %编程时间:2006.1.12 %作者:张小兵 %*********初始化程序****************** %超高斯亚高斯 %fs=8000; %f=14.324; %load chirp; %y=y(1:1000); %k=1:1000; %s1=sin(2*pi*f*k/fs);