📄 sumc.m
字号:
function m=sumc(x)% PURPOSE: compute sum of each column% -----------------------------------------------------% USAGE: m = sumc(x)% where x = input vector or matrix% -----------------------------------------------------% RETURNS: m = sum of x elements for columns% -----------------------------------------------------% NOTE: a Gauss compatability function% ----------------------------------------------------- % written by:% James P. LeSage, Dept of Economics% University of Toledo% 2801 W. Bancroft St,% Toledo, OH 43606% jpl@jpl.econ.utoledo.edu% get sum of each columnm=sum(x);if size(m,2)>1; m=m';end;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -