Borrar filtros
Borrar filtros

how to know pixel' s value of matrix

1 visualización (últimos 30 días)
bay rem
bay rem el 2 de En. de 2016
Respondida: the cyclist el 2 de En. de 2016
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

Respuesta aceptada

the cyclist
the cyclist el 2 de En. de 2016
For the last column
a(:,end)
OR
a(:,4)
For the last row:
a(end,:)
OR
a(3,:)

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by