Implementation of Trignometric functions in Mendix

1
Need information if we can use the following trignometric/scientific formulas directly in Mendix  Functions: sin(...), cos(...), tan(...), radians(...) Variables: [pi], [nlc], a, b, c Example: sin( [pi] * a + 7 ) + ( [nlc] * 42 - b * c)  
asked
2 answers
5

Take a look at the Math Module in the Mendix Marketplace. It should offer what you need.

https://marketplace.mendix.com/link/component/112522

I hope this helps.

answered
0

HI Nikhil,

There are no trigonometric/scientific formulas in Mendix by default, but you can achieve this by Creating a java action and putting your java code to do the calculations.

answered