how to know pixel' s value of matrix

1 回表示 (過去 30 日間)
bay rem
bay rem 2016 年 1 月 2 日
回答済み: the cyclist 2016 年 1 月 2 日
hello i have a matrix (a)
a= [a b c d;
e f g h;
i j k l]
  • i wanna test/know the values of d,h,l and i j k l

採用された回答

the cyclist
the cyclist 2016 年 1 月 2 日
For the last column
a(:,end)
OR
a(:,4)
For the last row:
a(end,:)
OR
a(3,:)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumeric Types についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by