Copying data
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
0 comentarios
Respuesta aceptada
Wayne King
el 8 de Dic. de 2011
X = randn(2,2,2000);
Y = X(:,:,1:1000);
Y copies the first 1000 elements of X along the 3rd dimension.
Más respuestas (0)
Ver también
Categorías
Más información sobre Language Fundamentals en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!