How to assign two identifiers to a vector of n values.

1 view (last 30 days)
Hi, I need to assign two identifiers to a vector of n values like V i,j in a way that V is not a cell but it is a vector of n values. How can I do that

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 1 Dec 2013
Edited: Azzi Abdelmalek on 1 Dec 2013
V=[2 4;5 8] % V is a matrix not a vector
i=1;
j=2;
V(i,j)
Look at
doc array
  3 Comments
Fred
Fred on 1 Dec 2013
Thank you, How can I call the V(2,1) because when I type it it just returns
[1x4 double]
How can I get directly
[2 0 1 4]

Sign in to comment.

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!