diff options
author | jofret | 2006-11-29 13:43:01 +0000 |
---|---|---|
committer | jofret | 2006-11-29 13:43:01 +0000 |
commit | 1cbebd3bb68e7aa2e9503f973c38b8f2314f75b6 (patch) | |
tree | 763b7902a412af133ac52fc23dea67d583abf038 /Doc/Elementary Functions/TrigonometricsDependeces.dot | |
parent | b7115f95a37381b60458fc1b931fc38d629b6220 (diff) | |
download | scilab2c-1cbebd3bb68e7aa2e9503f973c38b8f2314f75b6.tar.gz scilab2c-1cbebd3bb68e7aa2e9503f973c38b8f2314f75b6.tar.bz2 scilab2c-1cbebd3bb68e7aa2e9503f973c38b8f2314f75b6.zip |
Adding pythag function
Diffstat (limited to 'Doc/Elementary Functions/TrigonometricsDependeces.dot')
-rw-r--r-- | Doc/Elementary Functions/TrigonometricsDependeces.dot | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/Doc/Elementary Functions/TrigonometricsDependeces.dot b/Doc/Elementary Functions/TrigonometricsDependeces.dot index d864ac70..660e4ca9 100644 --- a/Doc/Elementary Functions/TrigonometricsDependeces.dot +++ b/Doc/Elementary Functions/TrigonometricsDependeces.dot @@ -9,7 +9,6 @@ F77_Call [label="Fortan Call", shape=doublecircle, color=green]; C_Call [label="C Call", shape=doublecircle, color=blue]; LAPACK_Call [label="LAPACK Call", shape=doublecircle, color=red]; - // // -*- Specific LAPACK Call -*- // @@ -17,7 +16,6 @@ Dlamch_E_Call [label="dlamch('E')", comment="Précision Machine - LAPACK", shape= Dlamch_U_Call [label="dlamch('U')", comment="Borne Inférieure - LAPACK", shape=doublecircle, color=red]; Dlamch_O_Call [label="dlamch('O')", comment="Borne Supérieure - LAPACK", shape=doublecircle, color=red]; - // // -*- Functions definition -*- // @@ -62,6 +60,8 @@ Abs_Real [label="abs(R)", comment="|R|"]; // Signe Sign_Real [label="sign(R)"]; +// Pythagore +Pythag_Real [label="pythag(R)"]; // @@ -245,6 +245,17 @@ Sqrt_Negative_Real -> Sqrt_Complex; // Call a sqrt function in F77 math lib Sqrt_Positive_Real -> F77_Call; +// -*- PYTHAG -*- +// +// pythag(a,b) = sqrt(a^2 + b^2) +// +// +Pythag_Real -> { + Sqrt_Real + Dlamch_O_Call +}; + + // -*- SIGN -*- // |