How to use a floating point number in max() function?
Mostrar comentarios más antiguos
Hi, I am trying to find a maximum number that is a float number using max().
allWidths = bb(3:4:end);
allHeights = bb(4:4:end);
aspectRatio = [allWidths./allHeights ; allHeights ./ allWidths];
aspectRatios = max(aspectRatio, [], 0.5);
but the line
aspectRatios = max(aspectRatio, [], 0.5);
shows an error. How could I use a floating point number to find the maximum value??
2 comentarios
max(aspectRatio, [], 0.5);
What is the 0.5-th dimension of an array?
Why not simply:
max(aspectRatio)
Dominic
el 13 de Ag. de 2017
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Image Arithmetic en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!