4D v16.3

Square root

ホーム

 
4D v16.3
Square root

Square root 


 

Square root ( number ) -> 戻り値 
引数   説明
number  実数 in 平方根を求める数値
戻り値  実数 in 平方根の値

説明   

Square rootnumberの平方根を返します。

以下の行は、値1.414213562373$vrSquareRootOfTwoに代入します:

 $vrSquareRootOfTwo :=Square root(2)

以下のメソッドは三角形の斜辺長を返します。この三角形の2つの斜辺以外の辺は引数として渡されます:

  ` Hypotenuse method
  ` Hypotenuse ( real ; real ) -> real
  ` Hypotenuse ( legA ; legB ) -> Hypotenuse
 C_REAL($0;$1;$2)
 $0:=Square root(($1^2)+($2^2))

例えば、Hypotenuse (4;3) は5を返します。



参照 

数値演算子

 
プロパティ 

プロダクト: 4D
テーマ: 算術関数
番号: 539

This command can be run in preemptive processes

 
履歴 

初出: 4D v6

 
ARTICLE USAGE

ランゲージリファレンス ( 4D v16)
ランゲージリファレンス ( 4D v16.1)
ランゲージリファレンス ( 4D v16.2)
ランゲージリファレンス ( 4D v16.3)