maxMinC.zip

find the largest (or smallest) element in any cell array, nested or not
192 download
Aggiornato 6 mag 2014

Visualizza la licenza

%find the largest/smallest element among all the elements in a cell array. The cell array can have matrix or a cell array or any combination of these two. The functions use recursion.
%there is a maxC and a minC in the zip file.
%EXAMPLE
%f=@() randi(100) %just to type faster the following
%a={{{ [f() f(); f() f()]} {f()} [f() f() f()]}; [f() f() f()]};
%maxC(a)
%notice some difference with the normal max/min, even with simple matrix:
%a=[1 2 3; 4 5 6];
%max(a)
%ans= 4 5 6
%maxC(a)= 6, as expected.

Cita come

Valerio Biscione (2024). maxMinC.zip (https://www.mathworks.com/matlabcentral/fileexchange/46467-maxminc-zip), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2014a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Data Types in Help Center e MATLAB Answers
Riconoscimenti

Ispirato: Quantile Probability Plot

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versione Pubblicato Note della release
1.2.0.0

little mistake in the description, max(a) instead of maxC(a)

1.1.0.0

grammar

1.0.0.0