gtimes.m
来自「非线型因素分析matlab仿真程序包」· M 代码 · 共 18 行
M
18 行
function y=gtimes(x1,x2)%GTIMES Generalized array multiplication.% C = GTIMES(A,B) denotes element-by-element multiplication.% 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, TIMES.% 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(@times,x1,x2);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?