What does this command line mean? (matrix A =[A t])
Afficher commentaires plus anciens
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?
Réponses (2)
Image Analyst
le 24 Mai 2023
0 votes
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
le 24 Mai 2023
0 votes
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
