Hello All,
Does any one know calculate cube root?
Thank you so much!
Bo
One way is to use the ** operator:
Data _null_;
x = 27**(1/3);
put x;
run;
1/3 power being the equivalent of cube root.
One way is to use the ** operator:
Data _null_;
x = 27**(1/3);
put x;
run;
1/3 power being the equivalent of cube root.
Hi Ballardw,
It works. Thank you for your tip.
Bo
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.