代码搜索:plot

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

代码结果 10,000
www.eeworm.com/read/437045/7755933

m testphasecalculation.m

% % Test program for phase calculation of ECG signals. % % Dependencies: The baseline wander and ECG filtering toolboxes of the Open Source ECG Toolbox % % Open Source ECG Toolbox, version 1.0, N
www.eeworm.com/read/436995/7757463

m xppvaj.m

% xppvaj.m % Scope: This MATLAB program determines acceleration and jerk from the % input data of time, position and velocity, and plots the relevant %
www.eeworm.com/read/436945/7758501

m plotobs.m

function plotobs(X, k) %PLOTOBS Scatter plot of observation classes % PLOTOBS(X, K) where X is a 2 or 3 column matrix of features and K % is a vector of class indeces produces a scatter plot of %
www.eeworm.com/read/436271/7773132

m resplot.m

% RESPLOT.M (RESult PLOTing) % % This function plots some results during computation. % % Syntax: resplot(Chrom,IndAll,ObjV,Best,gen) % % Input parameters: % Chrom - Matrix contai
www.eeworm.com/read/436271/7773145

m resplot.m

% RESPLOT.M (RESult PLOTing) % % This function plots some of the results during computation. % % Syntax: resplot(Chrom,IndAll,ObjV,Best,gen) % % Input parameters: % Chrom - Matrix
www.eeworm.com/read/435844/7782998

m exm062_4.m

%exm062_4.m clear,clf t=0:2*pi/99:2*pi; x=1.15*cos(t);y=3.25*sin(t); %y为长轴,x为短轴 plot(x,y),axis normal,grid on, title('Normal and Grid on') shg disp(' 以上是轴的通常设置。') disp('按任意键继续!下面是X-Y轴刻度等长度设置
www.eeworm.com/read/435710/7786534

m main.m

clear; [t,y]=ode45('fun',[0,35],[0,680,5000,0]); X=y(:,1); Vx=y(:,2); Y=y(:,3); Vy=y(:,4); subplot(1,3,1),plot(X,Y),axis([0,inf,0,5000]),grid on,xlabel('X'),ylabel('Y'),title('弹道曲线'); subplot
www.eeworm.com/read/435709/7786536

m lms.m

% % % % LMS算法源程序,FIR 的预测系统,对IIR系统进行预测时阶数高更能逼近 %clear all %close all %channel system order sysorder = 3; %pruduce the signal N = 500;% Number of system points input = randn(N,1); A = [-
www.eeworm.com/read/435548/7790652

m rlmd.m

function P=rlmd(a) x=0.001:0.01:6; c=exp(-(x.^2)/(2*a)); b=x./a; P=c.*b; plot(x,P); axis([0,6,0,0.6]);
www.eeworm.com/read/435208/7795490

m fdtd1d.m

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %Scott Hudson, WSU Tri-Cities %1D electromagnetic finite-difference time-domain (FDTD) program. %Assumes Ey and Hz field compone