gminus.m

来自「非线型因素分析matlab仿真程序包」· M 代码 · 共 18 行

M
18
字号
function y=gminus(x1,x2)%GMINUS   Generalized minus.%   C = GMINUS(A,B) subtracts matrix Y from X.%   The dimensions of the two operands are compared and singleton%   dimensions in one are copied to match the size of the other.%   Returns a matrix having dimension lengths equal to%   MAX(SIZE(A),SIZE(B))%% See also GENOPS, GENOP, MINUS.% Copyright (C) 2003 Aki Vehtari%% This software is distributed under the GNU General Public % Licence (version 2 or later); please refer to the file % Licence.txt, included with the software, for details.y=genop(@minus,x1,x2);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?