필터 지우기
필터 지우기

How do you build multiple cell arrays from the columns of an array?

조회 수: 1 (최근 30일)
L'O.G.
L'O.G. 2022년 5월 4일
댓글: L'O.G. 2022년 5월 4일
Given an m x N array of type double, how do you separate the columns into cells so that you have N, m x 1 cell arrays?

채택된 답변

Stephen23
Stephen23 2022년 5월 4일
M = randi(9,3,5)
M = 3×5
7 8 2 5 8 3 3 2 7 6 4 2 5 4 8
C = num2cell(M,1)
C = 1×5 cell array
{3×1 double} {3×1 double} {3×1 double} {3×1 double} {3×1 double}
  댓글 수: 3

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by