How do I reshape a dataset?
조회 수: 2 (최근 30일)
이전 댓글 표시
I have a 288x35 dataset, how do I make it into 35x288?
댓글 수: 0
답변 (2개)
Wayne King
2014년 2월 14일
편집: Wayne King
2014년 2월 14일
When you say dataset, do you just mean a matrix?
X = randn(288,35);
Y = X.';
If the elements are all real-valued, just
Y = X';
or do you mean the transpose of a MATLAB dataset?
댓글 수: 3
Wayne King
2014년 2월 14일
If you are talking about numerical data of size 288x35, then assume the data are called data
data = data';
참고 항목
카테고리
Help Center 및 File Exchange에서 Cell Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!