How I can fill matrix coefficients by vectors in matlab code

댓글 수: 1

Jos (10584)
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
Thorsten 2015년 10월 15일

0 개 추천

v1 = [1 2 3];
v2 = [3 4 5];
M = [v1; v2]

댓글 수: 5

kokomy
kokomy 2015년 10월 15일
편집: Walter Roberson 2015년 10월 16일
if I have V1,V2,V3,V4
M=[V1,V2;V3,V4]
for 2x2 matrix in the simple case
but in the case where the coefficients of the matrix change form 2x2 to 2x3 or 2x4 how I can behave in this case M(k,m)
kokomy
kokomy 2015년 10월 16일
can you please give me the help in my question
M = [V1, V2, V3; V4, V5, V6];
??
kokomy
kokomy 2015년 10월 16일
Thank's but if M coefficients change during the program assumed that M have (k,m)elements, we had the vectors elements then k and m change i.e take differents values for the formation of our matrix M
Walter Roberson
Walter Roberson 2015년 10월 16일
I was right, you need the link I provided about creating variables in a loop.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

질문:

2015년 10월 15일

댓글:

2015년 10월 16일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by