필터 지우기
필터 지우기

Copying data

조회 수: 1 (최근 30일)
Vinoth
Vinoth 2011년 12월 8일
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

채택된 답변

Wayne King
Wayne King 2011년 12월 8일
X = randn(2,2,2000);
Y = X(:,:,1:1000);
Y copies the first 1000 elements of X along the 3rd dimension.
  댓글 수: 1
Vinoth
Vinoth 2011년 12월 8일
Thanks a lot Wayne King :)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Import and Analysis에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by