I have an Array A that is in Float32. My goal is to convert it from Float32 to Float64. I tried the below and neither of them worked: B = float(A); B = convert(Float64, A)
When I tried to check the type using typeof, it still shows Float32.
What should be the correct way to do the conversion? Many thanks!