フィルターのクリア

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

2 ビュー (過去 30 日間)
TISA MARIA
TISA MARIA 2013 年 6 月 13 日
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 Center および File ExchangeImages についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by