How to know the smallest number after 0

2 vues (au cours des 30 derniers jours)
mohd akmal masud
mohd akmal masud le 29 Déc 2021
Commenté : Voss le 29 Déc 2021
Hi all, I have set images 3D (256x256x90 uint16), let say P. Anyone know how to know the smallest number after 0?
>> min(min(min(P)))
ans =
uint16
0
>> max(max(max(P)))
ans =
uint16
1387
  1 commentaire
David Goodmanson
David Goodmanson le 29 Déc 2021
Hi mohd,
see 'help eps' for a list

Connectez-vous pour commenter.

Réponse acceptée

Voss
Voss le 29 Déc 2021
The smallest uint16 number after zero is one.
  3 commentaires
Voss
Voss le 29 Déc 2021
After 0 is 1, since we are talking about the integer type uint16.
Voss
Voss le 29 Déc 2021
If you want to find the smallest number greater than 0 that is in your image data, you can do this:
min(P(P > 0))

Connectez-vous pour commenter.

Plus de réponses (1)

Chunru
Chunru le 29 Déc 2021
P = randi([0 65535], [5 5 10], 'uint16'); % smaller size for demonstration
P1 = P(:);
min(P1(P1>0))
ans = uint16 141
  1 commentaire
mohd akmal masud
mohd akmal masud le 29 Déc 2021
sir, what is [5 5 10] ?

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by