I need to convert a .txt file into arrays and will then plot it in a graph. My problem is this:
I have a text file containing x,y values:
23, 92
26, 16
45, 14
32, 11
43, 17
46, 58
and so on.....(so many values)
and i want to convert it into arrays:
double [] x= { 23, 26, 45, 32, 43, 46,...}
double [] y= { 92, 16, 14, 11, 17, 58,...}
This arrays will be set in a graph, but i need to set this first into arrays for me to plot it.
I still don't have a code for this yet. Please help :(