How to calculate cube root in blueprints?

Simply put, how do you calculate the cube root of a number in blueprints?

The node doesn’t exist, so I tried finding the cube root using logarithms but found I needed to calculate the inverse log, but that node doesn’t exist either.

If anyone can help that would be a great time saver.

Thanks

You can use the Math Expression Node for this, and it is highly recommended!

power, loge e/exp and more should be able to get you where you want to be!

You should post your math expression afterwards to share with everyone else once you’ve figured it out.

Thanks redbox. It seems like I need to go back to maths class, lol

Use Power ))

Sqrt is a power(x, 1/2), cbrt is a power(x, 1/3), and so on…

1 Like