How to create .csv file from curve plot as a results of our run?
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Più risposte (1)
José-Luis
il 9 Feb 2017
lH = plot(aH,rand(100,1),rand(100,1));
xData = lH.XData;
yData = lH.YData;
csvwrite('dummy.txt',[xData', yData'])
0 Commenti
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!