deletion of first row in the matrix
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ARJUN K P
le 16 Sep 2015
Réponse apportée : Thorsten
le 16 Sep 2015
my matrix is the form:
Ki = [25 35, 56 41,85 78] i want delete the first row data..
answer like:
56 41, 85 78
0 commentaires
Réponse acceptée
Thorsten
le 16 Sep 2015
Use ; to separate rows
Ki = [25 35; 56 41; 85 78];
Delete first row
Ki(1,:) = [];
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Resizing and Reshaping Matrices 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!