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

2 vues (au cours des 30 derniers jours)
like this : 0 1 0 0 0 1

Réponse acceptée

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

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by