How can I delete last two colum in a matrix?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Sourasis Chattopadhyay
el 14 de Dic. de 2022
Comentada: Star Strider
el 14 de Dic. de 2022
How can I delete last two colum in a matrix?
0 comentarios
Respuesta aceptada
Star Strider
el 14 de Dic. de 2022
Try something like this —
A = rand(7,5)
Anew = A(:,1:end-2)
.
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!