代码搜索:Plot
找到约 10,000 项符合「Plot」的源代码
代码结果 10,000
www.eeworm.com/read/321972/13391541
m test_plot.m
t = 0:0.1:10;
x = exp(-0.2*t) .* cos(2*t);
y = exp(-0.2*t) .* sin(2*t);
plot(x,y,'LineWidth',2);
title('\bfTwo-Dimensional Line Plot');
xlabel('\bfx');
ylabel('\bfy');
axis square;
grid on;
www.eeworm.com/read/321972/13391542
m barh_plot.m
x = [ 1 2 3 4 5 6];
y = [ 2 6 8 7 8 5];
barh(x,y);
title('\bfExample of a Horizontal Bar Plot');
xlabel('\bf\ity');
ylabel('\bf\itx');
axis([0 10 0 7]);
www.eeworm.com/read/321972/13391549
m pie_plot.m
data = [ 10 37 5 6 6];
explode = [ 0 1 0 0 0];
pie(data,explode);
title('\bfExample of a Pie Plot');
legend('One','Two','Three','Four','Five');
www.eeworm.com/read/321972/13391583
mat plot_line.mat
www.eeworm.com/read/321972/13391599
m plot_line.m
function fig = plot_line()
%
% Purpose:
% This program reads an input data set in (x,y) format
% and plots the resulting points. It illustrates the
% use of standard menus, context me
www.eeworm.com/read/321972/13391641
m plot_filter.m
www.eeworm.com/read/320152/13432429
m plot_sgy.m
function plot_sgy(src,event)
%PLOT_SGY Plot sgy data without reel
%
%filename:实际上是包括路径和文件名的字符串
%example:plot_sgy('d:\data\wyt_pc.sgy');
%From CUP
%Author: geoer,2007-7-11.21-07
global file;
www.eeworm.com/read/319404/13452531
m plot_test.m
www.eeworm.com/read/319404/13452543
m plot_test.m
function plot_test
t=0:0.001:0.04;
x=cos(2*pi*50*t);
plot(t,x,'r--');
grid on;
title('COM 组件绘图例子');
www.eeworm.com/read/317622/13500922
m plot_process.m
function plot_process(mu, plot_on)
%Plot the mu's during an algorithm's execution
%Inputs:
% mu - The location of points
% plot_on - 1-Plot centers, 2-Plot Voronoi centers, 3-Both
%
% No o