📄 get_marker.m
字号:
function mark=get_marker(index)
% Function gets the marker symbol associated with index "index"
% Markers are ['^';'v';'<';'>';'s';'d';'+';'x';'o';'p';'h';'.']
% For index > 12 the markers are repeated
% Written by: E. R.
%
% mark=get_marker(index)
% INPUT
% index index for which color symbol is requested
% OUTPUT
% mark string with marker symbol
marker=['^';'v';'<';'>';'s';'d';'+';'x';'o';'p';'h';'.'];
mark=marker(mod(index-1,12)+1);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -