필터 지우기
필터 지우기

How can i create cell array from matrix?

조회 수: 2 (최근 30일)
Volcano
Volcano 2022년 12월 21일
편집: Stephen23 2022년 12월 21일
Hi,
I am trying to convert my matrix to cell array which contains 2 rows and 1 column. Each cell should have x_set vector. How can i do this?
Thanks,
noP = 2;
x_set = [50 44 0.03 0.13];
x_set_mat = repmat(x_set,noP,1)

채택된 답변

Stephen23
Stephen23 2022년 12월 21일
편집: Stephen23 2022년 12월 21일
noP = 2;
x_set = [50,44,0.03,0.13];
C = repmat({x_set},noP,1)
C = 2×1 cell array
{[50 44 0.0300 0.1300]} {[50 44 0.0300 0.1300]}

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Types에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by