gridsize.m
来自「模式识别工具箱,本人毕业论文时用到的,希望对大家有用!」· M 代码 · 共 16 行
M
16 行
%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 + =
减小字号Ctrl + -
显示快捷键?