Command to delete last row and column of a matrix
98 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Swati Sarangi
el 28 de En. de 2020
Comentada: Bhaskar R
el 28 de En. de 2020
Hi,
Can anyone help me with the command to delete the last row and column of a 6 x 6 matrix?
Regards
Swati
0 comentarios
Respuesta aceptada
Alex Mcaulley
el 28 de En. de 2020
A(:,end) = []; %Delete last column
A(end,:) = []; %Delete last row
0 comentarios
Ver también
Categorías
Más información sobre Particle Swarm 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!