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!