How to find the maximum value among values less than a certain value?

52 visualizaciones (últimos 30 días)
Jae Min Lee
Jae Min Lee el 19 de Nov. de 2018
Editada: Andrei Bobrov el 19 de Nov. de 2018
I have a 10x10 cell maxtrix.
[maximumValue, index] = max([cell_matrix{:}]);
I found the max value using the above code.
But I want to find the maximum value of any value below a certain value, but I do not know what to do.

Respuestas (2)

madhan ravi
madhan ravi el 19 de Nov. de 2018
idx = matrix < 100; %100 is your certain value
%Numbers greater than 100
idx = matrix > 100;

Andrei Bobrov
Andrei Bobrov el 19 de Nov. de 2018
Editada: Andrei Bobrov el 19 de Nov. de 2018
A = cellfun(@(x)x(:),your_cell_array),'un',0);
A = sort(cat(1,A{:}));
out = A(find(A < certain_value,1,'last'));

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by