⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getlabn.m

📁 模式识别 MATLAB 的工具箱,比较实用,包括SVM,ICA,PCA,NN等等模式识别算法.
💻 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 + -