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

📄 minn.m

📁 利用matlab控制3维仿真软件sonnet的工具箱
💻 M
字号:
function [mn,idx,col]=minn(A)
%MINN N-D Array Minimum.
% MINN(A) returns the minimum value found in the array A.
%
% [MN,Row,Col] = MINN(A) for 2-D A returns the minimum value MN as well as
% the row and column subscripts where the minimum appears. Row and Col are
% column vectors if multiple minimums appear in A.
%
% [MN,Idx] = MINN(A) returns the minimum value MN as well as the linear
% indices Idx of all elements in A that are equal to MN.
% To get the row, column, ..., subscripts associated with the linear indices
% use IND2SUB(size(A),Idx).

% 2004-04-06, 2006-03-17
% D.C. Hanselman, University of Maine, Orono, ME  04469-5708

if ~isnumeric(A)
   error('Numeric Input Expected.')
end
mn=min(A(:));

if nargout==2                   % [MN,idx]=MINN(A)
   idx=find(A==mn);
   
elseif nargout==3 && ndims(A)==2 % [MN,Row,Col]=MINN(A)
   [idx,col]=find(A==mn);
   
elseif nargout==3
   error('Three Output Arguments Requires 2-D Input.')
end

⌨️ 快捷键说明

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