According to my local FPGA expert, Labview FPGA does not support floating point math, only integer math. So you cannot multiply 1.234 X 2. You have to create your own floating point math routines. One thing you could do is to multiply the floating point by powers of 10 until the decimal is gone. For instance, 1.234 X 1000 = 1234. Now you have an integer. Multiply 1234 X 2 = 2468. Now you have to get this back in floating point. FPGA doesn't have a divide function so you have to figure out where the decimal should go. In this example, it is easy to see that the answer should be 2.468. You will have to work out the details.
The local expert here says most people tend to not use floating point numbers in FPGA applications. If there is a way around it, you would be best to avoid using floating point numbers.