필터 지우기
필터 지우기

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