View Full Version : plotting data in mathematica
hi
i compile a c++ program and after compiling it gives me a txt file which contains about 50000 points.
how i can plot these points in mathematica?
thanks
Bill Simpson
Jan19-12, 12:12 PM
Several ways.
1: IF your c++ program can be slightly modified to give you a file exactly like
{
1,
2,
4,
3
}
and you can drop that file into your Mathematica folder and call it xox.txt then
ListPlot[<<"xox.txt"]
is all you need.
If you can't include the surrounding { and } and end each line except the next to last ending with a comma then your file won't contain a single complete Mathematica expression and you can start learning about how Mathematica does low level file reads and how to store individual lines into a list and then ListPlot the resulting list.
If you can't drop the file into your Mathematica folder then you can start learning about the nonstandard method that Mathematica uses to give a path to your file and use that.
hi
i upload the data.txt file .
how to plot it?
i tried ListPlot but it did not work
thanks
Bill Simpson
Jan19-12, 02:35 PM
Attach your data.txt file and a very tiny Mathematica notebook that you are using to try to read and plot that *without any changes* to your next post here. I will look at those and try to see if there is a problem with them or whether the problem is somewhere else.
And temporarily modify your C++ program so you don't send me 50000 points, create 50 points, verify that still doesn't work and then post the 50 point file and notebook.
And if "but it did not work" meant you got a warning message displayed when you tried to plot then include the exact message it displayed in your post.
Could everybody tells me how can i add a new topic ?
Thanks a lot
vBulletin® v3.8.7, Copyright ©2000-2012, vBulletin Solutions, Inc.