代码搜索:Plot
找到约 10,000 项符合「Plot」的源代码
代码结果 10,000
www.eeworm.com/read/325790/13185013
m plot.m
function plot(obj,varargin);
% Plots the data contained in the object.
%
% Syntax: (* = optional)
%
% plot(simobj, state*, colorscheme*);
% plot(simobj, states*, colorscheme*);
%
% In argument
www.eeworm.com/read/240003/13240963
h plot.h
/**************************************************
The plot.h include file allows to directly output
graphics / perform simple drawings in a standard
Windows 95/NT window
More information at ht
www.eeworm.com/read/137160/13342079
p plot.p
www.eeworm.com/read/137160/13342483
p plot.p
www.eeworm.com/read/323275/13345385
dat plot.dat
TITLE = "2D Results"
VARIABLES = "X", "Y", "U", "V", "P"
ZONE I=11, J=21, F=POINT
0.000 0.000 0.000E+00 0.000E+00 0.000E+00
0.000 0.001 0.999E-01 0.000E+
www.eeworm.com/read/322421/13380504
m plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time');ylabel('position tracking');
figure(2);
plot(t,u(:,1),'r');
xlabel('time');ylabel('control input');
figure(3);
cc=25
www.eeworm.com/read/322418/13380523
m plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('Position tracking');
figure(2);
plot(t,u(:,1),'r');
xlabel('time(s)');ylabel('Control input');
figure(3);
www.eeworm.com/read/322413/13380550
m plot.m
close all;
figure(1);
plot(t,y(:,1),'r',t,y(:,2),'b');
xlabel('time(s)');ylabel('position tracking');
figure(2);
plot(t,u,'r');
xlabel('time(s)');ylabel('initial control input');
figure(3