setplot1.m
来自「CLAWPACK is a software package designed 」· M 代码 · 共 31 行
M
31 行
% SETPLOT1 sets user defined plotting parameters%% User defined Matlab script for setting various Clawpack plotting% parameters. This script is called by PLOTCLAW1. A default% version of this script can be found in claw/matlab/setplot1.m and% copied to users working directory and modifed to set things up% differently.%% Parameters that can be set with SETPLOT1%% OutputFlag - set to 'ascii' or 'hdf'.% PlotStyle - used in plot command for line color and type.% mq - which component of q to plot% UserVariable - Set to 1 to specify a user defined variable.% UserVariableFile - name of m-file mapping data to q% MappedGrid - set to 1 if mapc2p.m exists for nonuniform% grid% MaxFrames - max number of frames%% All parameters can be modified by typing 'k' at the PLOTCLAW1 prompt.%% See PLOTCLAW1.mq = 1; % which component(s) of q to plotUserVariable = 0; % set to 1 to specify a user-defined variableUserVariableFile = ' '; % name of m-file mapping data to qMappedGrid = 0; % set to 1 if mapc2p.m exists for nonuniform gridPlotStyle = setplotstyle('ro'); % used in plot command for line color and typeMaxFrames = 1000; % max number of frames to loop over
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?