⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 prod.m

📁 GloptiPoly 3: moments, optimization and semidefinite programming. Gloptipoly 3 is intended to so
💻 M
字号:
function y = prod(x)% @MPOL/PROD - Product of elements%% For vectors, PROD(X) is the product of the elements of X.% For matrices, PROD(X) is a row vector with the product over each column.  % D. Henrion, August 3, 2004[nr,nc] = size(x);if min(nr,nc) == 1 y = x(1); for i = 2:max(nr,nc)  y = y*x(i); endelse y = x(1,:); for j = 1:nc  for i = 2:nr   y(j) = y(j)*x(i,j);  end endend

⌨️ 快捷键说明

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