代码搜索:Plot
找到约 10,000 项符合「Plot」的源代码
代码结果 10,000
www.eeworm.com/read/432937/8561547
asv nonlinear_plot.asv
% nonlinear_plot.m
% 非线性仿真系统图形绘制
subplot(1,2,1)
plot(xout(:,1),xout(:,2));
title('x - v graph');
axis([-0.5 1.5 -1 0.5]);
grid on;axis square;
subplot(1,2,2)
plot(xout(:,1),xout(:,2));
title(
www.eeworm.com/read/432935/8562107
m example_plot.m
% example_plot.m
% plot函数绘图示例
% 生成一维数组及其参数数组
a=0:0.1:1;
t=0:0.01:1;
% 生成二维数组
y=sin(3*t').*exp(-t')*a;
% 不同的绘制参数比较
% figure1: 二维数组绘制曲线
subplot(2,2,1);
plot(y);
axis([0 100 0 1]);
xlabel('in
www.eeworm.com/read/432935/8562141
asv plot_complex.asv
% plot_complex.m
% plot函数绘制复数曲线示例
% 产生一维自变量向量
t=[0:0.1:5]';
% 产生需要绘制的复数矩阵
y=t+exp(1/3*t).*sin(2*t+3)*i;
real_y=real();
imag_y=exp(1/3*t).*sin(2*t+3);
% 绘制曲线
subplot(1,2,1);
plot(y);
axis([0
www.eeworm.com/read/432935/8562152
m plot_complex.m
% plot_complex.m
% plot函数绘制复数曲线示例
% 产生一维自变量向量
t=[0:0.1:5]';
% 产生需要绘制的复数矩阵
y=t+exp(1/3*t).*sin(2*t+3)*i;
real_y=real(y);
imag_y=imag(y);
% 绘制曲线
subplot(1,2,1);
plot(y);
axis([0 5 -4 3]);
xl
www.eeworm.com/read/432935/8562179
m plot_params.m
% plot_params.m
% plot函数参数的示例
% 产生一维自变量向量
t=[0:pi/20:3*pi]';
% 产生需要绘制的复数矩阵
y=exp(-1/3*t).*sin(2*t+3);
y1=exp(-1/3*t);
% 绘制曲线
plot(t,y,'b:*');
xlabel('t');ylabel('y');
hold on;
plot(t,y1,'r-
www.eeworm.com/read/388439/8609384
m gp_plot.m
% For generating residual error plots for GP journal paper.
%
% Need to edit ver_ga
ver_ga
prob_ga
% Which model ?
mod_num=2;
num_points=length(y_v);
figure(1)
hold off
clg
subplo
www.eeworm.com/read/388439/8609590
m opt_plot.m
% opt_plot : For generating a plot of optimum T1,T2 for
% varying values of CAF1 (for 2 CSTR)
clear all
T10=341;
T20=341;
options=foptions;
%options(1)=1;
%options(14)=
dQ
www.eeworm.com/read/432314/8610305
m gp_plot.m
% For generating residual error plots for GP journal paper.
%
% Need to edit ver_ga
ver_ga
prob_ga
% Which model ?
mod_num=2;
num_points=length(y_v);
figure(1)
hold off
clg
subplo
www.eeworm.com/read/432314/8610366
m opt_plot.m
% opt_plot : For generating a plot of optimum T1,T2 for
% varying values of CAF1 (for 2 CSTR)
clear all
T10=341;
T20=341;
options=foptions;
%options(1)=1;
%options(14)=
dQ