?? gminus.m
字號:
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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -