📄 gridsize.m
字号:
%GRIDSIZE Set gridsize used in the PRTools plot commands%% gridsize(n)%% The default gridsize is 30, enabling fast plotting. This is,% however, insufficient for accurate plotting. A gridsize of% at least 100 and preferably 250 is needed for that purpose.% Default n = 30.%% See also plotd and plotmfunction gridsize(n)if nargin < 1, n = 30; endglobal GRIDSIZEGRIDSIZE = n;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -