Hello all,
i have a text file that contain data like this:
1 0.3232 0.361 0.5214 0.233 -0.7678
2 0.3451 0.321 0.134 0.224 -0.706268
3 0.3123 0.351 0.155 0.523 -0.70626
4 0.36 0.312 0.216 0.233 -0.6453351
5 0.269 0.3331 0.162 0.224 -0.584962
i did this using
string[] data = File.ReadAllLines("test.txt");
so what i want is to create an int array of each line of this text file and then use this array in other mathematical procedures
how this can be done ????
thanks