dataset.m
来自「matlab 模式识别工具包 希望能对你们有用」· M 代码 · 共 14 行
M
14 行
%DATASET Conversion of affine mapping to dataset%% a = dataset(w)%% If w is a m x k affine mapping, the axes of the map% are returned as a m x k dataset a.function a = dataset(w)if ~strcmp(w.m,'affine') error('Dataset conversion only defined for affine mappings')enda = dataset(w.d(1:w.k,:),[],w.l,[],[],-w.p);return
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?