What does this command line mean? (matrix A =[A t])
이전 댓글 표시
Hi. I was reading a MATLAB code (a numerical simulation), then I found this line that I can't understand) >>
%Let t be a scaler taken the value 5
t=5
A =[A t]
%the result on matlab was "Error using horzcat"
Could someone explain it to me please?
답변 (2개)
Image Analyst
2023년 5월 24일
0 개 추천
It means, if A is a row vector, that the value of t is to be stitched onto the right side of row vector A to form a new row vector A.
Or it could mean, if A is a scalar (single number) that the value of t (which is 5) is to be stitched onto the value of A to form a new A that is a 2-element row vector.
To learn other fundamental concepts, invest 2 hours of your time here:
the cyclist
2023년 5월 24일
0 개 추천
카테고리
도움말 센터 및 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!
