Plotting elements in a cell array
이전 댓글 표시
Hello,
can someone explaine me how to plot the elements in the cell array as attached.
thanks.
답변 (2개)
Dishant Arora
2014년 4월 9일
data = cellfun(@str2double, str, 'Un', 1);
plot(data)
Azzi Abdelmalek
2014년 4월 9일
load str;
data=cellfun(@str2num,str);
plot(data)
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!