Effacer les filtres
Effacer les filtres

Copying data

1 vue (au cours des 30 derniers jours)
Vinoth
Vinoth le 8 Déc 2011
Hi,
I have data stored as (2*2*2000).I want to copy the first (2*2*1000) values..how can i do this in matlab???
--vinoth

Réponse acceptée

Wayne King
Wayne King le 8 Déc 2011
X = randn(2,2,2000);
Y = X(:,:,1:1000);
Y copies the first 1000 elements of X along the 3rd dimension.
  1 commentaire
Vinoth
Vinoth le 8 Déc 2011
Thanks a lot Wayne King :)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Import and Analysis 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