필터 지우기
필터 지우기

Plot data from cell array

조회 수: 4 (최근 30일)
Auryn_
Auryn_ 2017년 8월 4일
답변: Cong Ba 2017년 8월 4일
Hi,
I have a cell array of 1x7 cell and each of this is a 1x100 double. I would like to make a surf plot like: surf(100,7,mycell) but I do not know how to convert the data of the cell to plot. If I use cell2mat it results in a 1x707 double array, and that is not what I need. Thanks in advance for your reply.

채택된 답변

Cong Ba
Cong Ba 2017년 8월 4일
Try if this works for you:
%%a is a cell array of 1x7 cell and each of this is a 1x100 double
a = cell(1,7);
for i = 1:7
a{i} = rand(1,100);
end
%%what you need
b = reshape(cell2mat(a),[100,7]);
surf(b);

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by