「Atof」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成: ; 構文 : (atof ''string'') ; 機能 : 文字列を実数に変換する。 ; 引数 :* string : 実数に変換する文字列。 ; 戻り値 : 実数。 ; サンプ…)
 
編集の要約なし
14行目: 14行目:


; サンプル
; サンプル
: (atof "97.1")  
<pre class="brush: autolisp;">
: '''97.1'''
(atof "97.1")  
: (atof "3")  
97.1
: '''3.0'''
 
: (atof "3.9")  
(atof "3")  
: '''3.9'''
3.0
 
(atof "3.9")  
3.9
</pre>
 


-----
-----

2010年3月12日 (金) 11:47時点における版

構文
(atof string)


機能
文字列を実数に変換する。
引数
  • string : 実数に変換する文字列。
戻り値
実数。


サンプル
 (atof "97.1") 
 97.1

 (atof "3") 
 3.0

 (atof "3.9") 
 3.9



関連事項