代码搜索:plot

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

代码结果 10,000
www.eeworm.com/read/426120/10285520

m plotaiwa.m

%绘制路径示意图 R纪录最短路径 function plotaiwa(a,R) scatter(a(:,1),a(:,2),'ro') hold on plot([a(R(1),1),a(R(31),1)],[a(R(1),2),a(R(31),2)]) hold on for i=2:length(R) x0=a(R(i-1),1); y0=a(R(i-1),2)
www.eeworm.com/read/355155/10290361

txt p7.44.txt

%输入,类别C P=[-3 -2 -2 0 0 0 0 2 2 3; 0 1 -1 2 1 -1 -2 1 -1 0]; C=[1 1 1 2 2 2 2 1 1 1]; T=ind2vec(C); %绘制 i=1; cla for i=1:10 if C(i)==1 plot(P(1,i),P(2,i),'+') hold on else plot(P(1,i),
www.eeworm.com/read/280633/10301795

m rjdemo1sa.m

% PURPOSE : To approximate a noisy nolinear function with RBFs, where the number % of parameters and parameter values are estimated via reversible jump % Markov Chain Monte Carlo (
www.eeworm.com/read/280604/10304673

m showmixture.m

function showmixture(x,z,sigma) % showmixture: project data matrix on first eigenvectors (if necessary) % and show Gaussian mixture in that space % showmixture(x,z,sigma) % x - data %
www.eeworm.com/read/280601/10309104

m kdrange_demo.m

%% Demo of the KDRANGEQUERY function. %% %% Guy Shechter %% guy at jhu dot edu %% June 2004 %% Generate a set of 1000 reference datapoints in R^2 ReferencePts = rand(1000,2); %%% Build the
www.eeworm.com/read/162323/10314233

m exp2_4_.m

close all clc clear %定义时间范围 t=[0:pi/20:9*pi]; hold on %允许在同一坐标系下绘制不同的图形 plot(t,sin(t),'r:*') plot(t,cos(t)) plot(t,-cos(t),'k') grid on %在所画出的图形坐标中添加栅格,注意用在plot之后 hold off %覆盖旧图
www.eeworm.com/read/162323/10314264

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/354915/10314430

m exa080901_dct1.m

%-------------------------------------------------------------------------- % exa080901_dct1.m, for example 8.9.1 % to test dct.m; % 调用该程序的主程序是exa080901_dct1_test.m, %----------------------------
www.eeworm.com/read/354915/10314440

m exa030203.m

%---------------------------------------------------------------------------- % exa030203, for example 3.2.5 % to explain how to do DTFT %-----------------------------------------------------------
www.eeworm.com/read/354915/10314442

m exa080901_dct1_test.m

%--------------------------------------------------------------------------- % exa080901_dct1_test, for exa8.9.1 % to call function exa080901_dct1; %------------------------------------------------