代码搜索:plot

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

代码结果 10,000
www.eeworm.com/read/458493/7295524

m plotdata.m

function plotData(fname) % plotData Plot (x,y) data from columns of an external file % % Synopsis: plotData(fname) % % Input: fname = (string) name, including extension, of the %
www.eeworm.com/read/458493/7295556

m sourcesinkplot.m

% sourceSinkPlot Surface and contour plots of source/sink pair ngrid = 40; % Number of grid lines xg = linspace(-5,5,ngrid); % Vector of both x and y grid locations
www.eeworm.com/read/458493/7295559

m democontour.m

% demoContour Demonstration of a contour plot xg = linspace(-5,5,20); % grid vector [X,Y] = meshgrid(xg,xg); % Create matrices of X and Y values Z = 2 - X.^2 - Y.^2; % Vectorized e
www.eeworm.com/read/458493/7295562

m tfield.m

function Tfield % Tfield Load and plot temperature field stored in custom format text file % % Synopsis: Tfield % % Input: none % % Output: 2D color image with contour plot overlay
www.eeworm.com/read/458493/7295749

m demoode45.m

function demoODE45 % demoODE45 Integrate dy/dx = -y; y(0) = 1 with ode45 % % Synopsis: demoODE45 % % Input none % % Output: Table and plot comparing the numerical and exact solutions
www.eeworm.com/read/458488/7295936

m easyplot.m

% easyplot: Script to plot data in file xy.dat % Load the data D = load('xy.dat'); % D is matrix with two columns x = D(:,1); y = D(:,2); % x in 1st column, y in 2nd column plot(x,
www.eeworm.com/read/458488/7295949

m plotdata.m

function plotData(fname) % plotData Plot (x,y) data from columns of an external file % % Synopsis: plotData(fname) % % Input: fname = (string) name, including extension, of the %
www.eeworm.com/read/458488/7295981

m sourcesinkplot.m

% sourceSinkPlot Surface and contour plots of source/sink pair ngrid = 40; % Number of grid lines xg = linspace(-5,5,ngrid); % Vector of both x and y grid locations
www.eeworm.com/read/458488/7295984

m democontour.m

% demoContour Demonstration of a contour plot xg = linspace(-5,5,20); % grid vector [X,Y] = meshgrid(xg,xg); % Create matrices of X and Y values Z = 2 - X.^2 - Y.^2; % Vectorized e
www.eeworm.com/read/458488/7295987

m tfield.m

function Tfield % Tfield Load and plot temperature field stored in custom format text file % % Synopsis: Tfield % % Input: none % % Output: 2D color image with contour plot overlay