marker_type2.m

来自「support vector clustering for Matlab too」· M 代码 · 共 24 行

M
24
字号
function m=marker_type2(i)
% MARKER_TYPE Returns marker type.
%
% Synopsis:
%  m=marker_type(i)
%
% See also MARKER_COLOR. 
%

% About: Statistical Pattern Recognition Toolbox
% (C) 1999-2003, Written by Vojtech Franc and Vaclav Hlavac
% Czech Technical University Prague
% Faculty of Electrical Engineering
% Center for Machine Perception

% Modifications:
%  7-jan-2003, VF, created

MARKERS=['x','*','^','p','h','<','d','>','v'];

m=MARKERS(mod(i-1,length(MARKERS))+1);

return;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?