📄 trimr.m
字号:
function z = trimr(x,n1,n2)% PURPOSE: return a matrix (or vector) x stripped of the specified rows.% -----------------------------------------------------% USAGE: z = trimr(x,n1,n2)% where: x = input matrix (or vector) (n x k)% n1 = first n1 rows to strip% n2 = last n2 rows to strip% NOTE: modeled after Gauss trimr function% -----------------------------------------------------% RETURNS: z = x(n1+1:n-n2,:)% -----------------------------------------------------% written by:% James P. LeSage, Dept of Economics% University of Toledo% 2801 W. Bancroft St,% Toledo, OH 43606% jpl@jpl.econ.utoledo.edu [n junk] = size(x); if (n1+n2) >= n; error('Attempting to trim too much in trimr'); end; h1 = n1+1; h2 = n-n2; z = x(h1:h2,:);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -