How to assign two identifiers to a vector of n values.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Fred
am 1 Dez. 2013
Kommentiert: Fred
am 1 Dez. 2013
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
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 1 Dez. 2013
Bearbeitet: Azzi Abdelmalek
am 1 Dez. 2013
V=[2 4;5 8] % V is a matrix not a vector
i=1;
j=2;
V(i,j)
Look at
doc array
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!