代码搜索:Plot
找到约 10,000 项符合「Plot」的源代码
代码结果 10,000
www.eeworm.com/read/263959/11335489
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/263959/11335591
mat plot_line.mat
www.eeworm.com/read/263959/11335641
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/263959/11335769
m plot_filter.m
www.eeworm.com/read/263879/11338283
m plot3.m
%空间曲线图
% PLOT3(x,y,z,s)其中x,y,z为向量,每一组分量代表一个数据点。
% s为表示颜色、连线和标记选择的字符串
%例如 曲线x=exp(-0.2*z)*cos(0.5*pi*z),y=exp(-0.2*z)*sin(0.5*pi*z), 0
www.eeworm.com/read/409260/11338952
f90 plot.f90
! 简单的绘图范例
! By Perng 1997/9/19
program Plot_Demo
! 使用Visual Fortran的绘图功能时需要module dflib
use DFLIB
implicit none
type(xycoord) :: t
integer :: result
call MoveTo(10,10,t) ! 把目前绘图的位置移动到坐
www.eeworm.com/read/409142/11344880
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/409142/11344903
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/409142/11344980
m test_plot.m
function test_plot
t = 0:pi/50:10*pi;
plot3(sin(t),cos(t),t)
axis square; grid on
www.eeworm.com/read/409142/11345223
m my_plot.m
function my_plot(x,y)
% newplot返回当前坐标轴的句柄
cax = newplot;
LSO = ['- ';'--';': ';'-.'];
set(cax,'FontName','Times','FontAngle','italic')
set(get(cax,'Parent'),'MenuBar','none')
line_handles = lin