代码搜索:plot

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

代码结果 10,000
www.eeworm.com/read/302070/13842699

txt matlab自适应滤波器的程序.txt

clear all close all %channel system order sysorder = 5 ; % Number of system points N=2000; inp = randn(N,1); n = randn(N,1); [b,a] = butter(2,0.25); Gz = tf(b,a,-1); %This function
www.eeworm.com/read/301807/13848211

m f12_1.m

%读信号 load noisbump x = noisbump; %3层小波包分解 t = wpdec(x,3,'db2'); %显示小波包树结构 fig = plot(t);
www.eeworm.com/read/301646/13853208

m shili14.m

function shili14 h0=figure('toolbar','none',... 'position',[200 150 450 250],... 'name','实例14'); axis([0 10 0 10]); hold on x=[]; y=[]; n=0; disp('单击鼠标左键点取需要的点'); disp('单击鼠标右键点取最后一个点
www.eeworm.com/read/301646/13853249

m shili33.m

h0=figure('toolbar','none',... 'position',[200 150 450 250],... 'name','实例33'); x=0:0.5:2*pi; y=sin(x); h=plot(x,y); grid on huidiao=[... 'if i==1,',... 'i=0;,',... 'y=co
www.eeworm.com/read/301646/13853275

m shili36.m

h0=figure('toolbar','none',... 'position',[200 150 450 250],... 'name','实例36'); x=0:0.5:2*pi; y=sin(x); h=plot(x,y); grid on hm=uicontrol(gcf,'style','popupmenu',... 'string',...
www.eeworm.com/read/301588/13855720

m exa133.m

%exa133_sinc.m for example 1-33 %sinc function sinc函数 clear all; x=linspace(-6,6); y=sinc(x); plot(x,y)
www.eeworm.com/read/301136/13865704

m kalman.m

clc clear T=1%雷达扫描周期 num=100;%滤波次数 al=1/120;%机动频率常数 amax=100;%m/s^2 amax1=-100; %%%%%%%%%%%%%%%%%%%%%%%%%%%%%产生真实轨迹%%%%%%%%%%%%%%%%%%%%%%%%%%%%% N1=10/T; N2=20/T; N3=33/T; N4=47/T
www.eeworm.com/read/238651/13870164

txt 用ga训练bp网络.txt

% 用GA训练BP网络的权值、阈值 tic, % 开始计时 [P,T,R,S1,S2,S]=nninit; % BP网络初始化 aa=ones(S,1)*[-1 1]; popu=60; % 初始种群个数 initPpp=initializega(popu,aa,'gabpEval'); gen=700; % 遗传代数 [x endPop bPop trace]=ga(
www.eeworm.com/read/136165/13870628

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/136165/13870662

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