필터 지우기
필터 지우기

Hi I have raw data 3D accelorometer

조회 수: 1 (최근 30일)
Khalid Al naime
Khalid Al naime 2019년 3월 14일
댓글: Khalid Al naime 2019년 3월 18일
Hi i have 3D raw data accelorometer 300*3 matrics . I need to divide the raw data into 10 part each part 30*10 sequentially and run the matlab to execute the data and stor it in same time. for example
1 1 1
2 2 2
: : :
30 30 30
the program should excute the above matrics then move to next matrics from row (31 to row 60)*3 and so on . in same run.
Thank you

답변 (1개)

KSSV
KSSV 2019년 3월 14일
REad about reshape
A = rand(300,3) ;
B = permute(reshape(A, 300/30, 3, []), [1, 3, 2]);

카테고리

Help CenterFile Exchange에서 Large Files and Big Data에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by