Add new column at the end of matrix
Mostrar comentarios más antiguos
I have a 3x3 matrix i want to add a column at the end of matrix with A=[1,2,3]'
Respuestas (1)
KSSV
el 11 de Sept. de 2020
A = rand(3) ;
B = [1 2 3]' ;
C = [A B]
Categorías
Más información sobre Numeric Types en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!