how to know pixel' s value of matrix

1 次查看(过去 30 天)
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 CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by