MATLAB: How to convert int32 to real number

int32

hi
how to convert int32 no. to real number
for example if I have thisvelocity2.png

Best Answer

X_real = double(X_int32);
HTH