代码搜索:plot

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

代码结果 10,000
www.eeworm.com/read/157642/11679311

m xiangwei.m

t=-5:0.01:5; x=cos(.2*pi*t); plot(t,zeros(size(t)),'black') hold on plot(t,x,'blue.') axis([-5,5,-1.5,1.5]) hold on pause y=1/3*cos(.2*pi*3*t); plot(t,y,'g.') hold on pause z=x-y; plot(
www.eeworm.com/read/260913/11687127

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/157533/11693344

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/157533/11693401

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/157533/11694938

m example6_1.m

%首先装载一原始信号 load nearbrk; s=nearbrk; %=========================== %画出该信号的波形图 subplot(4,2,1); plot(s); Ylabel('s'); title('原始信号s和信号的近似a、细节d'); %=========================== %用小波
www.eeworm.com/read/346860/11718138

m ex5_8.m

t=0:0.01:2*pi; x=exp(i*t); y=[x;2*x;3*x]'; plot(y) grid on; %加网格线 box on; %加坐标边框 axis equal %坐标轴采用等刻度
www.eeworm.com/read/157345/11718316

m netw_brief.m

function netw_brief(filename,protshow,figsepar); if nargin
www.eeworm.com/read/157345/11718318

m nr.m

function nr(filename); if nargin
www.eeworm.com/read/157345/11718400

m netw.m

function netw(datafile,mappfile,curv,link); % The function: % % netw(datafile,mappfile,curv,link); % % draws the results stored in files created by NLPm.exe. % The two first args give
www.eeworm.com/read/157321/11720335

m mallat_algorithm.m

%%%%%%%mallat algorithm%%%%% clc; clear; %%%%original signal%%%% f=100;%%frequence ts=1/800;%%抽样间隔 N=1:100;%%点数 s=sin(2*ts*pi*f.*N);%%源信号 figure(1) plot(s);%%%源信号s title('原信号'); grid on;