fill a matrix from vectors
古いコメントを表示
How I can fill matrix coefficients by vectors in matlab code
1 件のコメント
Jos (10584)
2015 年 10 月 16 日
You lost me. Can you rephrase your question and provide an elaborated example of the input(s) and expected output?
回答 (2 件)
Thorsten
2015 年 10 月 15 日
v1 = [1 2 3];
v2 = [3 4 5];
M = [v1; v2]
5 件のコメント
kokomy
2015 年 10 月 15 日
編集済み: Walter Roberson
2015 年 10 月 16 日
kokomy
2015 年 10 月 16 日
Walter Roberson
2015 年 10 月 16 日
M = [V1, V2, V3; V4, V5, V6];
??
kokomy
2015 年 10 月 16 日
Walter Roberson
2015 年 10 月 16 日
I was right, you need the link I provided about creating variables in a loop.
Walter Roberson
2015 年 10 月 16 日
0 投票
I have a suspicion that I need to post this:
カテゴリ
ヘルプ センター および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!