How to extract data from MATLAB code?
Afficher commentaires plus anciens
My data consists of 389 rows and 40 columns like (size(gather) 389 40). I want to extract 40 columns and rows from 105 to 381 (105:381) with new dimensions (size(gather) 276 40). How I can do it?
Réponse acceptée
Plus de réponses (1)
randerss simil
le 17 Fév 2021
%if true
A = rand(389,40)
iwant = A(105:381,:)
1 commentaire
Nisar Ahmed
le 17 Fév 2021
Catégories
En savoir plus sur Get Started with MATLAB 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!