How can I delete last two colum in a matrix?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Sourasis Chattopadhyay
le 14 Déc 2022
Commenté : Star Strider
le 14 Déc 2022
How can I delete last two colum in a matrix?
0 commentaires
Réponse acceptée
Star Strider
le 14 Déc 2022
Try something like this —
A = rand(7,5)
Anew = A(:,1:end-2)
.
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!