?? x2dplot.m
字號:
% x2Dplot.m
% This example demonstrates how to plot a 2-D graphic
%
% Author: HUANG Huajiang
% Copyright 2003 UNILAB Research Center,
% East China University of Science and Technology, Shanghai, PRC
% $Revision: 1.0 $ $Date: 2003/02/04 $
Data_x2Dplot % Retrieve data from the script file Data_x2Dplot.m
t = dat(:,1);
CA1 = dat(:,2);
CA2 = dat(:,3);
plot(t,CA1,'ko-',t,CA2,'b^-')
axis([0 t(end)+0.5 min(min(dat(:,2:3)))-0.1 max(max(dat(:,2:3)))+0.05])
xlabel('Time (min)')
ylabel('C_A_1, C_A_2 (kmol/m^3)')
legend('C_A_1','C_A_2')
title('Concentration profiles')
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -