I am coding GL fractional operator in VHDL to put on FPGA. I am using IEEE.fixed_pkg package in order to have the ufixed and sfixed types and their operations
the problem is that I need at some part to to do raising to power calculation ( h**alpha) where both h and alpha are fixed numbers.
when I tried ** operator with ufixed, I got: No feasible entries for infix operator " ** ". I realized that this operation is not implemented in this package
Now, Is there a way to raise to power for fixed numbers (both base and exponent) without writing implementing the operation my self? ( as this is not the focus of the project).