Effacer les filtres
Effacer les filtres

How can I delete last two colum in a matrix?

2 vues (au cours des 30 derniers jours)
Sourasis Chattopadhyay
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?

Réponse acceptée

Star Strider
Star Strider le 14 Déc 2022
Try something like this —
A = rand(7,5)
A = 7×5
0.5913 0.0197 0.5496 0.4826 0.8172 0.0226 0.2084 0.4920 0.3916 0.4963 0.3309 0.6599 0.3613 0.7490 0.0767 0.8878 0.2860 0.8968 0.3605 0.1475 0.8661 0.5546 0.8458 0.8396 0.9193 0.8801 0.9111 0.8651 0.2889 0.7545 0.2091 0.5319 0.4838 0.8030 0.0023
Anew = A(:,1:end-2)
Anew = 7×3
0.5913 0.0197 0.5496 0.0226 0.2084 0.4920 0.3309 0.6599 0.3613 0.8878 0.2860 0.8968 0.8661 0.5546 0.8458 0.8801 0.9111 0.8651 0.2091 0.5319 0.4838
.
  2 commentaires
Sourasis Chattopadhyay
Sourasis Chattopadhyay le 14 Déc 2022
Thank you so much for your valuable help.
Star Strider
Star Strider le 14 Déc 2022
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays 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!

Translated by