필터 지우기
필터 지우기

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 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