Sie verfolgen jetzt diese Einreichung
- Aktualisierungen können Sie in Ihrem Feed verfolgter Inhalte sehen.
- Je nach Ihren Kommunikationseinstellungen können Sie auch E-Mails erhalten.
MINMAX find kth smallest or largest values and their indices.
USAGE:
vals = minmax(data) % find minimum
vals = minmax(data,k) % find kth smallest values
vals = minmax(data,k,flag) % find kth largest values
[vals,loci] = minmax(:)
[vals,loci,locj] = minmax(:) for 2 d array
[vals,loci,locj,...] = minmax(:) % for multi dimensional array
INPUT:
data - two dimensional data
k - number of smallest or largest values required
flag - whether min or max
OUTPUT:
vals - smallest or largest values
loci - index to the row
locj - index to the column
EXAMPLES:
data = 1:16;
data = reshape(data,4,4);
[out,loci,locj] = minmax(data,5) % find the 5 smallest vaues and
their locations
[out,loci,locj] = minmax(data,5,'max) % find the 5 largest vaues and
their locations
Zitieren als
Durga Lal Shrestha (2026). Min and Max for Array (https://de.mathworks.com/matlabcentral/fileexchange/37646-min-and-max-for-array), MATLAB Central File Exchange. Abgerufen .
Quellenangaben
Inspiriert: Transformation matrix for stress and strain
Allgemeine Informationen
- Version 1.0.0.0 (2,09 KB)
Kompatibilität der MATLAB-Version
- Kompatibel mit allen Versionen
Plattform-Kompatibilität
- Windows
- macOS
- Linux
| Version | Veröffentlicht | Versionshinweise | Action |
|---|---|---|---|
| 1.0.0.0 |
