📄 mapd.m
字号:
%MAPD Map data on given mapping%% D = MAPD(A,W)%% Maps the dataset A on the mapping W. If A is a M x K dataset,% and W is a K x C mapping then D is a M x C dataset.%% This command may also be written as:%% D = A*W%function d = mapd(a,w)d = a*w;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -