what does k = 0:25.5:255 function means

1 vue (au cours des 30 derniers jours)
mohammad mehio
mohammad mehio le 18 Oct 2021
Commenté : mohammad mehio le 18 Oct 2021
for k = 0:25.5:255
io = imread('MRI.png')
ig = rgb2gray(io)
subplot(1,1,1)
imshow(ig)
[r,c] = size(ig) % r=row,c=column
disp9[r,c])
  1 commentaire
mohammad mehio
mohammad mehio le 18 Oct 2021
what does k= 0:25.5:255 means

Connectez-vous pour commenter.

Réponse acceptée

Adam
Adam le 18 Oct 2021
Modifié(e) : Adam le 18 Oct 2021
doc colon
It means create an array starting at 0, incrementing by 25.5 each time, with a maximum value of 255.
Easiest way to see these things for yourself is just do it on command line on its own and see the result. Note that if the end value is not excactly on the increment from the start point then this value will not be included. It is a maximum end point for the array rather than an specific end point.
In this case it will be included:
0:25.5:255
ans =
0 25.5000 51.0000 76.5000 102.0000 127.5000 153.0000 178.5000 204.0000 229.5000 255.0000

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by