「Gz:round」の版間の差分
(ページの作成:「{{GZLIB}} ; 構文 : (gz:round ''num'' ''count'') ; 機能 : 指定の桁数 (小数位) に数値を四捨五入します。 ; 引数 :* num … 階乗計算する...」) |
編集の要約なし |
||
(同じ利用者による、間の2版が非表示) | |||
9行目: | 9行目: | ||
; 引数 | ; 引数 | ||
:* num … | :* num … 計算する数値 | ||
:* count … 有効桁数 | :* count … 有効桁数 1=0.1 | ||
19行目: | 19行目: | ||
; サンプル | ; サンプル | ||
<pre class="brush:autolisp;"> | <pre class="brush:autolisp;"> | ||
(gz:round 123. | (gz:round 123.6789 0) | ||
124 | 124 | ||
(gz:round 123.67 1) | (gz:round 123.67 1) | ||
123.7 | 123.7 | ||
(gz:round 123.6789 2) | |||
123.68 | |||
(gz:round 123.6789 3) | |||
123.679 | |||
(gz:round 123.67 -1) | (gz:round 123.67 -1) | ||
38行目: | 44行目: | ||
* [[gz:roundup]] | * [[gz:roundup]] | ||
* [[gz:rounddown]] | * [[gz:rounddown]] | ||
* [[vle-roundto]] | |||
[[Category:AutoLISP]] | |||
[[Category:BricsCADのLISP]] | |||
[[Category:AutoLISP]] | [[Category:AutoLISP]] | ||
[[Category:GZ-Lib]] | [[Category:GZ-Lib]] |
2023年11月23日 (木) 10:09時点における最新版
- 構文
- (gz:round num count)
- 機能
- 指定の桁数 (小数位) に数値を四捨五入します。
- 引数
-
- num … 計算する数値
- count … 有効桁数 1=0.1
- 戻り値
- 四捨五入された数値
- サンプル
(gz:round 123.6789 0) 124 (gz:round 123.67 1) 123.7 (gz:round 123.6789 2) 123.68 (gz:round 123.6789 3) 123.679 (gz:round 123.67 -1) 120 (gz:round 123.67 -2) 100
関連事項