How to create .csv file from curve plot as a results of our run?
2 ビュー (過去 30 日間)
古いコメントを表示
Hi matlab users,
i got a curve as a results of my running. How can i convert its raw data into .csv? with variable Load as y-axis and displacement as x-axis in it?
0 件のコメント
採用された回答
その他の回答 (1 件)
José-Luis
2017 年 2 月 9 日
lH = plot(aH,rand(100,1),rand(100,1));
xData = lH.XData;
yData = lH.YData;
csvwrite('dummy.txt',[xData', yData'])
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!