cumprodc.m
来自「计量工具箱」· M 代码 · 共 24 行
M
24 行
function m=cumprodc(x);% PURPOSE: compute cumulative product of each column% -----------------------------------------------------% USAGE: m = cumprodc(x)% where x = input vector or matrix% -----------------------------------------------------% RETURNS: m = cumulative product of x elements% by columns% ----------------------------------------------------- % written by:% James P. LeSage, Dept of Economics% University of Toledo% 2801 W. Bancroft St,% Toledo, OH 43606% jpl@jpl.econ.utoledo.edum=cumprod(x);if size(m,2)>1; m=m';end;return;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?