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!