代码搜索:Plot

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

代码结果 10,000
www.eeworm.com/read/251838/4414507

m mixexp_plot.m

function plot_mixexp(theta, eta, data) % PLOT_MIXEXP Plot the results for a piecewise linear regression model % plot_mixexp(theta, eta, data) % % data(l,:) = [x y] for example l % theta(i,:) = regre
www.eeworm.com/read/251522/4418866

m mixexp_plot.m

function plot_mixexp(theta, eta, data) % PLOT_MIXEXP Plot the results for a piecewise linear regression model % plot_mixexp(theta, eta, data) % % data(l,:) = [x y] for example l % theta(i,:) = regre
www.eeworm.com/read/240175/4578701

m plot_cell_no.m

function plot_cell_no(CELL) % PLOT_CELL_NO Plot the current location for a cell. % Copyright (c) 1997-2000 Jiming Liu and Jianbing Wu Current_X=0; Current_Y=0; Visible_Width=10; End_X=Current_X
www.eeworm.com/read/240175/4578703

m plot_trace.m

function plot_trace(HISTORY,Age) % PLOT_TRACE Plot the trajectory for robots. % Copyright (c) 1997-2000 Jiming Liu and Jianbing Wu Loop_Inc=5; Robot_Num=3; Point_X=0; Point_Y=0; View_Wid
www.eeworm.com/read/240175/4578715

m plot_cell.m

function plot_cell % PLOT_CELL Draw the current location for a cell. % Copyright (c) 1997-2000 Jiming Liu and Jianbing Wu global CELL Current_Goal; Current_X=0; Current_Y=0; Visible_Width=10;
www.eeworm.com/read/229812/4750531

gml gr_plot.gml

The drawing &routines cause pixels to be set with a pixel value. By default, the value to be set is obtained by replacing the original pixel value with the supplied pixel value. Alternatively, the
www.eeworm.com/read/222065/4822822

eps scat_plot.eps

%!PS-Adobe-2.0 EPSF-1.2 %%Creator: MATLAB, The Mathworks, Inc. %%Title: scat_plot.eps %%CreationDate: 05/02/96 09:06:15 %%DocumentNeededFonts: Helvetica %%DocumentProcessColors: Cyan Magenta Yellow B
www.eeworm.com/read/218114/4864199

m plot511.m

function plot511 figure(1) t=1:0.1:10; y=sin(t); plot(y) figure(2) y= [0 1 2;2 3 4;5 6 7] plot(y) figure(3) x=[1:1:100]; y=[2:2:200]; z=x+y.*i; plot(z) figure(4) x=0:0.1:10; y=sin
www.eeworm.com/read/218114/4864222

m plot3521.m

function plot3521 figure(1) t=0:pi/50:10*pi; plot3(cos(t),sin(t),t) figure(2) t=[0:pi/100:2*pi]; x=[sin(t) sin(t)]; y=[cos(t) cos(t)]; z=[(sin(t)).^2+(cos(t)).^2 (sin(t)).^2+(cos(t)).^2+1
www.eeworm.com/read/218114/4864252

m test_plot.m

function test_plot t = 0:pi/50:10*pi; plot3(sin(t),cos(t),t) axis square; grid on