代码搜索:Plot

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

代码结果 10,000
www.eeworm.com/read/346158/3189501

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/320347/3548423

m plot_gm.m

function Plot_GM(W,M,V,flag,X) % Plot_GM(W,M,V,X) % % Plots a 1D or 2D Gaussian mixture. % % Inputs: % W(1,k) - weights of each GM component, k is the number of component % M(d,k) - m
www.eeworm.com/read/317451/3579889

tcl rtm_plot.tcl

# # routines to perform post processing, mostly for plotting # Class PostProcess PostProcess instproc init { l lf lg gf gg bf bg } { $self instvar linkflowfile_ linkgraphfile_ $self
www.eeworm.com/read/309003/3708195

m update_plot.m

function update_plot(frac) % update_plot -- Called by WLBrowser % Usage % update_plot(frac) % global PlotFig HC n signal_name tmp = get(PlotFig,'UserData'); %n %disp(tmp(1:10)) s = length
www.eeworm.com/read/309003/3708662

m make_plot.m

function make_plot(m) global h_coefmenu h_powermenu h_riskmenu sigchoice global h_scalemenu h_valuemenu h_noisemenu h_sizemenu if sigchoice == zeros(size(sigchoice)) error('Either select a signa
www.eeworm.com/read/309003/3708665

m redo_plot.m

function redo_plot(frac) global PlotFig HC x_length x_name tmp = get(PlotFig,'UserData'); %disp(tmp(1:10)) s = length(tmp); x = tmp(4:s); m = round(frac*x_length); panel = tmp(3); lo = m - pan
www.eeworm.com/read/309003/3708702

m plot_newdata.m

function plot_new_data global PlotFig x_use HC x_length x_name figure(PlotFig); ntmp = zeros(1,x_length+3); ntmp(1) = min(min(x_use)); ntmp(2) = max(max(x_use)); ntmp(3) = x_leng
www.eeworm.com/read/304591/3796101

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/304591/3796124

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/304591/3796156

m test_plot.m

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