How to extract a part of a given vector and store it in a new vector using loops (for loop) ?
Afficher commentaires plus anciens
Given vector: [1 2 3 4 5 6 7 8 9 10];
New vector, let's say: [4 5 6 7].
2 commentaires
Azzi Abdelmalek
le 21 Oct 2013
Modifié(e) : Azzi Abdelmalek
le 21 Oct 2013
Is it homework? If yes, what have you tried so far?
Zack Shane
le 21 Oct 2013
Modifié(e) : Azzi Abdelmalek
le 21 Oct 2013
Réponse acceptée
Plus de réponses (1)
Image Analyst
le 21 Oct 2013
Modifié(e) : Image Analyst
le 21 Oct 2013
data2 = data1(seg1:seg2); % Extract indexes seg1 through seg2 into new vector.
1 commentaire
Zack Shane
le 21 Oct 2013
Catégories
En savoir plus sur Matrix Indexing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!