The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Cube Root and Cube
Hi,
When trying to generate attributes, I know how to use the built-in functions for log transforms, etc. However, i do not know how to generate the cube root of a variable. Similarly, i also want to know how to generate the cube of a variable. Can someone please help me with these transformations?
Thanks,
James
When trying to generate attributes, I know how to use the built-in functions for log transforms, etc. However, i do not know how to generate the cube root of a variable. Similarly, i also want to know how to generate the cube of a variable. Can someone please help me with these transformations?
Thanks,
James
0
Answers
Within the Generate Attributes operator you can use the function pow() - so for an attribute called att1, the cube would be pow(att1,3) and the cube root would be pow(att1,1/3)
regards
Andrew