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

5 views (last 30 days)
like this : 0 1 0 0 0 1

Accepted Answer

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

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!