I was wondering if there is a way to convert double [] [] to float [] [] in Java? I currently have a for loop in my code that does this and am looking for a better and cleaner way.
Any ideas would be appreciated, Thanks,
There is no faster way. Also note that not every double value is converted to float - the float range is smaller.