🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 04-01-2014 02:56 PM
(13616 views)
Hello All,
Does any one know calculate cube root?
Thank you so much!
Bo
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi Ballardw,
It works. Thank you for your tip.
Bo