what does the colon mark indicates in the color seperation of image?

2 次查看(过去 30 天)
what does the colon mark indicates in the color separation of image Z(:,:,1)

采纳的回答

David Sanchez
David Sanchez 2013-6-13
It says you are taking all the elements.
example. If
Z = [1 2 3;
4 5 6;
7 8 9];
Then
Z(:,1) = [1;
4;
7];
Z(2,:) = [4 5 6];

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by