how to add a row to a matrix?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
arian hoseini
el 11 de En. de 2022
A=[1;2;3;4;5]
i wanna add 0 to n row..i tried A(n, :) = 0...but i get this A=[0;2;3;4;5] instead of A=[0;1;2;3;4;5]
what's the problem?
0 comentarios
Respuesta aceptada
KSSV
el 11 de En. de 2022
Editada: KSSV
el 11 de En. de 2022
Note that you want to append zero before to the first element of A. What you did is replace the first element of A with 0.
A=[1;2;3;4;5] ;
A = [0;A]
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Resizing and Reshaping Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!