📄 getlabn.m
字号:
%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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -