How to extract the 1 to 4 row and skip 5&6 and continuse 7 and 8 row?
14 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
vimal kumar chawda
le 2 Juil 2021
Réponse apportée : Nikhil Sapre
le 2 Juil 2021
I have 8*1 matrix.
I want to extract the first four element( 1st to 4th position) in new vector and last 2 element(7&8 position). How can I do it?
x1 =[6856.06600000000
65128.6516000000
6881.95430000000
65135.3738000000
6810.99550000000
65302.1415000000
6836.86630000000
65308.8605000000]
So my new vector will be
new =[6856.06600000000
65128.6516000000
6881.95430000000
65135.3738000000
6836.86630000000
65308.8605000000]
0 commentaires
Réponse acceptée
Nikhil Sapre
le 2 Juil 2021
This should work
new = [x1(1:4)]
new = [new; x1(end-1:end)]
Thanks,
Nikhil
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!