Fsqrt()

Fsqrt gibt die Quadratwurzel eines Fließkommawertes (Single) zurück.

Syntax: Ergebnis = Fsqrt( value as single )

Beispiel:

  dim a,b as Single
  b=1.4
  a=b^2        ' Ergebnis: 1.959
  a = Fsqrt(a) ' Ergebnis: 1.4 (1.399)

Siehe auch: Sqrt