Copying data

2 Ansichten (letzte 30 Tage)
Vinoth
Vinoth am 8 Dez. 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

Akzeptierte Antwort

Wayne King
Wayne King am 8 Dez. 2011
X = randn(2,2,2000);
Y = X(:,:,1:1000);
Y copies the first 1000 elements of X along the 3rd dimension.
  1 Kommentar
Vinoth
Vinoth am 8 Dez. 2011
Thanks a lot Wayne King :)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Language Fundamentals finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by