Fsqrt()
Fsqrt returns the square root of a floating number (Single).
Syntax: ergebnis = Fsqrt( Expression )
Example:
dim a,b as Single b=1.4 a=b^2 ' output: 1.959 a = Fsqrt(a) ' output: 1.4 (1.399)
See also: Sqrt
en:fsqrt
Fsqrt returns the square root of a floating number (Single).
Syntax: ergebnis = Fsqrt( Expression )
Example:
dim a,b as Single b=1.4 a=b^2 ' output: 1.959 a = Fsqrt(a) ' output: 1.4 (1.399)
See also: Sqrt