How to plot data from cells?
이전 댓글 표시
I have data for four different conditions saved in a cell format. Someone please guide me how to plot the data? I have tried the plotSpread function but it is generating following errors:
Unrecognized function or variable 'repeatEntries'.
Error in plotSpread (line 192)
distributionIdx = repeatEntries((1:nData)',nn);
The data file iis attached. Many thanks !
채택된 답변
추가 답변 (1개)
Here's one way:
load('data_conditions.mat')
data_oROI
for ii = 1:numel(data_oROI)
subplot(2,2,ii)
plot(squeeze(data_oROI{ii}))
end
카테고리
도움말 센터 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
