I'd like to use floating point math (sin, cos, log, exp) in a header file that I inlude in an object but this throws an error (undefined reference to `sin'). Neither including cmath nor math.h resolved the error. It works if fixed values are given (e.g. sin(0.5)), probably because the calculation is done by the compiler.
Is it at all possible to use these floating point math functions with axoloti?