📄 get_marker.m
字号:
function mark=get_marker(index,markers)% Function gets the marker symbol associated with index "index"% Default markers are {'^';'v';'<';'>';'s';'d';'+';'x';'o';'p';'h';'.'}% If index "index" is greater than the number of markers specified the markers % are repeated.% See also: get_linestyle, get_color%% Written by: E. R.% Last updated: April 5, 2007: Add second input argument%% mark=get_marker(index)% INPUT% index index for which a marker is requested% markers optional; one or more markers to replace the defaults% OUTPUT% mark string with marker symbol%% EXAMPLE% mark=get_marker(2,{'d','s','o'})if nargin == 1 || isempty(markers) markers={'^';'v';'<';'>';'s';'d';'+';'x';'o';'p';'h';'.'};elseif ischar(markers) markers={markers}; endmark=markers{mod(index-1,length(markers))+1};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -