how to set matrix from data
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Walter Roberson
2016 年 10 月 15 日
sn = 6; en = 2;
m = zeros(1, max(sn,en));
m(sn) = -1;
m(en) = 1;
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!