getlabn.m
来自「matlab 模式识别工具包 希望能对你们有用」· M 代码 · 共 15 行
M
15 行
%GETLABN Get numeric labels of dataset%% [NLAB,LABLIST] = GETLABN(A)%% Returns the numeric labels NLAB of all objects in the dataset A.% Numbers are assigned in alphabetical order.% LABLIST is the corresponding label list, such that the original% labels can be retrieved as LAB = LABLIST(NLAB,:);function [nlab,lablist] = getlabn(a) nlab = a.l;lablist = a.ll{1};return
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?