⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 x2dplot.m

📁 matlab在化学工程中的应用实例程序,对大家研究学习有指导作用。
💻 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 + -