How can I write a matrix 6x1 that the element (2,1) and (6,1) equal to 1 and others are zero?

2 visualizaciones (últimos 30 días)
like this : 0 1 0 0 0 1

Respuesta aceptada

Star Strider
Star Strider el 8 de Oct. de 2014
If the vector is ‘A’, this works:
A([2 6]) = 1;
produces:
A =
0 1 0 0 0 1

Más respuestas (0)

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by