I have the matrix: time=0:0.05:8; and I'm trying to divide it into multiple matrices of 4. I tried using:
TIME=mat2cell(time,1,4) but i don't know what I'm doing wrong.

댓글 수: 1

Greg
Greg 2018년 2월 4일
Can you elaborate? I'm not following "multiple matrices of 4." What are you wanting to do with the sub-matrices?

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

 채택된 답변

Star Strider
Star Strider 2018년 2월 4일

0 개 추천

First, this is easier if you create ‘time’ so the length is an integer multiple of 4.
Then, creating the cell array is straightforward:
time=0:0.05:8-0.05;
TIME=mat2cell(time,1, fix(numel(time)/4)*ones(1,4))
This creates ‘TIME’ as 4 (1x40) cell arrays, because ‘fix(numel(time)/4)’ for this ‘time’ vector is 40.
The row and column dimensions of the arguments to mat2cell must equal the row and column dimensions of the argument array.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Matrix Indexing에 대해 자세히 알아보기

질문:

2018년 2월 4일

답변:

2018년 2월 4일

Community Treasure Hunt

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

Start Hunting!

Translated by