source:
trunk/LMDZ.GENERIC/libf/bibio/cbrt.F
@
764
Last change on this file since 764 was 135, checked in by , 14 years ago | |
---|---|
File size: 127 bytes |
Rev | Line | |
---|---|---|
[135] | 1 | FUNCTION cbrt(x) |
2 | IMPLICIT NONE | |
3 | ||
4 | REAL x,cbrt | |
5 | ||
6 | cbrt=sign(1.,x)*(abs(x)**(1./3.)) | |
7 | ||
8 | RETURN | |
9 | END |
Note: See TracBrowser
for help on using the repository browser.