代码搜索:plot

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

代码结果 10,000
www.eeworm.com/read/417000/11007599

m exp2_4.m

close all clc clear %定义时间范围 t=[0:pi/20:9*pi]; figure(1) %选择图像 plot(t,sin(t),'r:*') grid on %在所画出的图形坐标中添加栅格,注意用在plot之后 grid off %删除栅格 figure(2) plot(t,cos(t)) grid on grid off
www.eeworm.com/read/270946/11018928

m glp.m

clear all; %% open data file fid=fopen('d:\HKWH_Z1.ABF','r');%file path xdata=fread(fid,'float32'); %read data from file fclose(fid);%close file clear fid; %% extract 32768 points from the
www.eeworm.com/read/416438/11025264

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/416438/11025293

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/416438/11025349

m exdyn.m

%======================================================================== % Exdyn: An example for using WaveNet: Dynamic System Identification %=====================================================
www.eeworm.com/read/416411/11030848

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/416309/11033985

m gafault.m

% 用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(aa,'gab
www.eeworm.com/read/416309/11034025

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/416309/11034054

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/416247/11036619

m rl_load.m

function f=rl_load(varargin) %This programme solves various formulaes for diode connected to rl load %This function also offers graph for the function selected %This function runs independently as