代码搜索:Plot

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

代码结果 10,000
www.eeworm.com/read/232177/14205221

m traj_plot.m

function traj_plot( M ) plot3( M( :, 1 ), M( :, 3 ), M( :, 2 ) ); xlabel( 'X' ); ylabel( 'Z' ); zlabel( 'Y' ); axis( [ -2, 4, 0, 6, -2, 4 ] ); view( [-0.4, -0.4, 1 ] );
www.eeworm.com/read/232108/14208735

m guid_plot.m

% GUID_PLOT StopFcn plot script for Simulink model 'guidance' % J.Hodgson % Copyright 1990-2000 The MathWorks, Inc. % $Revision: 1.5 $ $Date: 2000/09/01 19:26:48 $ %if ~isempty(findob
www.eeworm.com/read/129915/14217765

m plot_process.m

function plot_process(mu) %Plot the mu's during an algorithm's execution %Inputs: % mu - The location of points % No outputs h = findobj('UserData','mu'); if (~isempty(h)), delete(h
www.eeworm.com/read/129915/14217774

m plot_scatter.m

function plot_scatter(plot_features, plot_targets, fig, color) % Make a scatter plot of the data % Inputs: % plot_features - Data features % plot_targets - Data targets % fig - Optional figu
www.eeworm.com/read/129353/14249910

m plot_spectrum.m

function plot_spectrum(x,str) P=spectrum(x,8000,0,hanning(300)); plot(10*log10(P(:,1)),str); return;
www.eeworm.com/read/128628/14286982

cpp plot_arr.cpp

#include #include const int size = 5; class plot { int x, y; public: plot(int i, int j) { if(i>size) i = size; if(i
www.eeworm.com/read/128477/14294489

m stem_plot.m

x = [ 1 2 3 4 5 6]; y = [ 2 6 8 7 8 5]; stem(x,y); title('\bfExample of a Stem Plot'); xlabel('\bf\itx'); ylabel('\bf\ity'); axis([0 7 0 10]);
www.eeworm.com/read/128477/14294491

m bar_plot.m

x = [ 1 2 3 4 5 6]; y = [ 2 6 8 7 8 5]; bar(x,y); title('\bfExample of a Bar Plot'); xlabel('\bf\itx'); ylabel('\bf\ity'); axis([0 7 0 10]);
www.eeworm.com/read/128477/14294500

m compass_plot.m

x = [ 2 -2 1 3 -1]; y = [ 2 2 -2 1 -3]; compass(x,y); title('\bfExample of a Compass Plot'); grid on
www.eeworm.com/read/128477/14294502

m stair_plot.m

x = [ 1 2 3 4 5 6]; y = [ 2 6 8 7 8 5]; stairs(x,y); title('\bfExample of a Stair Plot'); xlabel('\bf\itx'); ylabel('\bf\ity'); axis([0 7 0 10]);