English
Source / code snippets

Konstanten maths Trigonometrie

 
fountain: maths,  [...] 
Trigonometrie and Konstanten, package of Michael Wodrich
Konstanten
Def !Pi 3.14159265358979323846   Kreiszahl Pi  (höhere accuracy)
Def !HalfPi 1.57079632679489661923   Pi / 2
Def !TwoPi 6.28318530717958647692   Pi * 2
Def !KehrPi 0.318309886183790671538035357467728   1 / Pi
Def !PiDiv180 0.0174532925199432957692   Pi / 180   (strain- to Bogenmaß) (Degree to Radian)
Def !f180DivPi 57.2957795130823208768463643441911   180 / Pi   (Bogenmaß to strain) (Radian to Degree)
functions
Def @DegToRad(1) @Mul(@!(1),!PiDiv180)
Degree -> Radian  (strain- to Bogenmaß)
in example:  erg! = Sin(DegToRad(strain!))
Def @RadToDeg(1) @Mul(@!(1),!f180DivPi)
Radian -> Degree  (Bogenmaß to strain)
Def @mins!(2) @If(@LT(@!(1),@!(2)),@!(1),@!(2))
Def @Max!(2) @If(@GT(@!(1),@!(2)),@!(1),@!(2))
determined the minimum and maximum zweier Float-values.
Def @Min&(2) @If(@LT(@&(1),@&(2)),@&(1),@&(2))
Def @Max&(2) @If(@GT(@&(1),@&(2)),@&(1),@&(2))
determined the minimum and maximum zweier LongInt-values.
Def @SHL(2) (@&(1) << @&(2))
<<  bitweise to left schieben (corresponds to of/ one Multiplikation with 2)
Def @SHR(2) (@&(1) >> @&(2))
>>  bitweise to right schieben (corresponds to of/ one Division through 2)
Def @Odd(1) @If(@Equ(((@&(1) >> 1) << 1),@&(1)),1,0)
Odd - Ungerade
Def @Neg(1) @Mul(@!(1),(-1.0))
negation
Def @Cpl2(1) @Add(@Mul(@!(1),(-1.0)),1)
Zweierkomplement
Def @Sgn!(1) @If(@LT(@!(1),0.0),-1.0,@If(@GT(@!(1),0.0),1.0,0.0))
Def @Sgn&(1) @If(@LT(@&(1),0),-1,@If(@GT(@&(1),0),1,0))
Signum
Def @Kubik(1) @Mul(@Sqr(@!(1)),@!(1))
x^3 == x³ == x² * x == x * x * x
Def @log(2) @Div(@Ln(@!(1)),@Ln(@%(2)))
Logarithmus to Base n  ==  log(number!,Base%) == Ln(x!) / Ln(n%)
Def @log10(1) @Div(@Ln(@!(1)),@Ln(10.0))
Logarithmus to Base 10  ==  Ln(x) / Ln(10)
Def @Lg(1) @Div(@Ln(@!(1)),@Ln(10.0))     (Profan-function)
Logarithmus to Base 10  ==  Ln(x) / Ln(10)
Def @log2(1) @Div(@Ln(@!(1)),@Ln(2.0))
Logarithmus to Base 2  ==  Ln(x) / Ln(2)
Def @Ld(1) @Div(@Ln(@!(1)),@Ln(2.0))
Logarithmus to Base 2  ==  Ln(x) / Ln(2)
Def @Exp10(1) @Exp(@Mul(@!(1),@Ln(10.0))
10^x   Power of ten
Def @Exp2(1) @Exp(@Mul(@!(1),@Ln(2.0))
2^x   Power of two
Def @Exp(1) ...     (Profan-function)
e^x   Power of Euler
Def @Sin(1) @Sqrt(@Sub(1.0,@Sqr(@Cos(@!(1)))))     (Profan-function)
Sinus   y = Sqrt( 1 - Cos(x)^2 )
Def @Cos(1) ...     (Profan-function)
Cosinus
Def @Tan(1) @Div(@Sin(@!(1)),@Cos(@!(1)))     (Profan-function)
Tangens   y = Sin(x) / Cos(x)
Def @Cot(1) @Div(@Cos(@!(1)),@Sin(@!(1)))     (Profan-function)
Cotangens   y = Cos(x) / Sin(x)  or  y = 1 / Tan(x)
Def @Sec(1) @Div(1.0,@Cos(@!(1)))
Sekans   y = 1 / Cos(x)
Def @Csc(1) @Div(1.0,@Sin(@!(1)))
Cosekans   y = 1 / Sin(x)
Def @ArcSin(1) @Sub(!HalfPi,@ArcCos(@!(1)))
Arcus Sinus   y = 0.5 * Pi - ArcCos(x)  or  y = ArcTan(x/Sqrt(1-Sqr(x)))
Def @ArcCos(1) @Mul(2.0,@ArcTan(Sqrt(@Div(@Sub(1.0,@!(1)),@Add(1.0,@!(1))))))
Arcus Cosinus y = 2 * ArcTan( Sqrt( (1-x) / (1+x) ) )
y = ArcTan(-x / Sqrt(1-Sqr(x))) + 2 * ArcTan(1)
Def @ArcTan(1) ...     (Profan-function)
Arcus Tangens
Def @ArcCot(1) @Sub(!HalfPi,@ArcTan(@!(1)))
Arcus Cotangens y = 0.5 * Pi - ArcTan(x)
y = ArcTan(x) + 2 * ArcTan(1)
Def @ArcSec(1) @ArcCos(@Div(1.0,@!(1)))
Arcus Sekans y = ArcCos( 1/x )
y = ArcTan(x/Sqrt(Sqr(x)-1)) + Sgn(x-1) * 2 * ArcTan(1)
Def @ArcCsc(1) @ArcSin(@Div(1.0,@!(1)))
Arcus Cosekans y = ArcSin( 1/x )
y = ArcTan(x/Sqrt(Sqr(x)-1)) + (Sgn(x)-1) * 2 * ArcTan(1)
Def @XHypSub(1) @Sub(@Exp(@!(1)),@Exp(@Neg(@!(1))))
Hilfsfunktion   y = Exp(x) - Exp(-x)
Def @XHypAdd(1) @Add(@Exp(@!(1)),@Exp(@Neg(@!(1))))
Hilfsfunktion   y = Exp(x) + Exp(-x)
Def @Sinh(1) @Div(@XHypSub(@!(1)),2.0)
Hyperbel Sinus   y = (Exp(x) - Exp(-x)) / 2
Def @Cosh(1) @Div(@XHypAdd(@!(1)),2.0)
Hyperbel Cosinus   y = (Exp(x) + Exp(-x)) / 2
Def @Tanh(1) @Div(@Sinh(@!(1)),@Cosh(@!(1)))
Hyperbel Tangens   y = Sinh(x) / Cosh(x)
Def @Coth(1) @Div(@Cosh(@!(1)),@Sinh(@!(1)))
Hyperbel Cotangens   y = Cosh(x) / Sinh(x)
Def @Sech(1) @Div(2.0,@XHypAdd(@!(1)))
Hyperbel Sekans   y = 2 / (Exp(x) + Exp(-x))
Def @Csch(1) @Div(2.0,@XHypSub(@!(1)))
Hyperbel Cosekans   y = 2 / (Exp(x) - Exp(-x))
Def @ArcSinh(1) @Ln(@Add(@!(1),@Sqrt(@Add(@Sqr(@!(1)),1.0))))
Hyperbel Arcus Sinus   y = Ln( x + Sqrt(x²+1) )
Def @ArcCosh(1) @Ln(@Add(@!(1),@Sqrt(@Sub(@Sqr(@!(1)),1.0))))
Hyperbel Arcus Cosinus   y = Ln( x + Sqrt(x²-1) )
Def @ArcTanh(1) @Div(@Ln(@Div(@Add(1.0,@!(1)),@Sub(1.0,@!(1)))),2.0)
Hyperbel Arcus Tangens   y = Ln( (1+x) / (1-x) ) / 2
Def @ArcCoth(1) @Div(@Ln(@Div(@Add(@!(1),1.0),@Sub(@!(1),1.0))),2.0)
Hyperbel Arcus Cotangens   y = Ln( (x+1) / (x-1) ) / 2
Def @ArcSech(1) @Ln(@Div(@Add(@Sqrt(@Add(@Mul(@Neg(@!(1)),@!(1)),1.0)),1.0),@!(1)))
Hyperbel Arcus Sekans   y = Ln( (Sqrt(-x*x+1)+1) / x )
Def @ArcCsch(1) @Ln(@Div(@Add(@Mul(@Sgn(@!(1)),@Sqrt(@Add(@Sqr(@!(1)),1.0))),1.0),@!(1)))
Hyperbel Arcus Cosekans   y = Ln( ( Sgn(x) * Sqrt(x²+1) + 1 ) / x)
 
05/01/04  
 



Zum Quelltext


Topictitle, max. 100 characters.
 

Systemprofile:

no Systemprofil laid out. [anlegen]

XProfan:

 Posting  Font  Smilies  ▼ 

Please register circa a Posting To verfassen.
 

Topic-Options

2.761 Views

Untitledvor 0 min.

Themeninformationen

this Topic has 1 subscriber:

unbekannt (1x)


Admins  |  AGB  |  Applications  |  Authors  |  Chat  |  Privacy Policy  |  Download  |  Entrance  |  Help  |  Merchantportal  |  Imprint  |  Mart  |  Interfaces  |  SDK  |  Services  |  Games  |  Search  |  Support

One proposition all XProfan, The there's!


My XProfan
Private Messages
Own Storage Forum
Topics-Remember-List
Own Posts
Own Topics
Clipboard
Log off
 Deutsch English Français Español Italia
Translations

Privacy Policy


we use Cookies only as Session-Cookies because of the technical necessity and with us there no Cookies of Drittanbietern.

If you here on our Website click or navigate, stimmst You ours registration of Information in our Cookies on XProfan.Net To.

further Information To our Cookies and moreover, How You The control above keep, find You in ours nachfolgenden Datenschutzerklärung.


all rightDatenschutzerklärung
i want none Cookie