🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

Cube Root and Cube

User: "scooter7"
New Altair Community Member
Updated by Jocelyn
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

Find more posts tagged with

Sort by:
1 - 2 of 21
    User: "Andrew2"
    New Altair Community Member
    Hello James

    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
    User: "scooter7"
    New Altair Community Member
    OP
    Thanks!