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