What is the matrix code for column vectors
이전 댓글 표시
You have two variables u, v and you calculate the shape using the size command:
>> size(u) ans = 1 3 >> size(v) ans = 3 1 I want a matrix with 3 columns, the vectors u and v in the first two, and their sum in the third.
답변 (2개)
dbmn
2017년 7월 14일
This should do the trick using the ' for transpose
new_matrix = [u', v', (u+v)']
댓글 수: 2
Meenakshi S
2017년 7월 14일
Jan
2017년 7월 14일
@Meenakshi S: Please do not let us guess. Does "not accept" means, that you get an error message? If so, please post it here. It is much easier to fix an error than to guess, what the error is.
Many readers of the forum are not native English speakers. Then kewl abbrevs makes it harder to read your messages.
C.J. Harris
2017년 7월 14일
There are a few ways to do this, for example:
x = [u' v (u' + v)]
The apostrophe can be used to transpose a matrix. You could also use the 'reshape' command.
카테고리
도움말 센터 및 File Exchange에서 MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!