how to set matrix from data
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
yu yue
am 15 Okt. 2016
Kommentiert: Walter Roberson
am 15 Okt. 2016
I have a path from node 6 to node 2, how can i can get the matrix like this [0 1 0 0 0 -1] ?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 15 Okt. 2016
sn = 6; en = 2;
m = zeros(1, max(sn,en));
m(sn) = -1;
m(en) = 1;
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!