what does k = 0:25.5:255 function means
2 次查看(过去 30 天)
显示 更早的评论
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])
采纳的回答
Adam
2021-10-18
编辑:Adam
2021-10-18
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
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!