📄 colstd.m
字号:
% Standard deviation of the columns of a. Matlab's 'std' does the wrong thing when a has only one row
function a = colstd(a)
if size(a, 1) > 1
a = std(a);
else
a = zeros(size(a));
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -