I am trying to convert some data that I read in file as string data to a float array
The data that is read are in two dimensional string array like
char tmatrix[10][100];
for(j=0;j<k3;j++){printf("\n %s",tmatrix[j]);} //k3=max data read
0.5
0.2
0.3
0.6
Now I need to convert the content of tmatrix[][] into a float array
so that float_array[1]=0.5