Matrix reduction from large matrix data.

조회 수: 2 (최근 30일)
Nedz
Nedz 2020년 10월 16일
댓글: KSSV 2020년 10월 16일
I have an input training data of dimension 10,451 by 41.
How can i form a 3 by 3 matrix from each of the row (1 by 41)???
  댓글 수: 2
Durganshu
Durganshu 2020년 10월 16일
Please elaborate on what is the basis of your matrix reduction. Are you trying to implement something like PCA?
KSSV
KSSV 2020년 10월 16일
As you have 41 elements in a row.....it is tough to divide them into 3*3 matrices as you will be left with some elements left or append extra zeros/ nans to the array.
A = rand(1,41) ;
B = reshape(A(1:36),3,3,[]) ; % 36 because it is divisble by 9
Anew = [A NaN(1,4)] ;
Bnew = reshape(A,3,3,[]) ; % append nans to make A of length 45

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Pattern Recognition and Classification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by