convert string array to float array
in
Programming Questions
•
1 year ago
I want to save my float numbers into an array , should I use float array ?
how can I convert string array to that float array(for float numbers)?
here is my code :
- for(int x = 0; x <100; x++){
- for(int j = 120*x; j < 120*x+10; j++){
- receivedFromUDP += str(data[j]) + " ";
- String[] bin1 = new String[data.length];
- bin1 [j] = binary(data[2*j+1])+binary(data[2*j]);
1