- Scilabヘルプ
- Strings
- ascii
- asciimat
- blanks
- char
- convstr
- emptystr
- eval
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- regexp
- sci2exp
- strcat
- strchr
- strcmp
- strcmpi
- strcspn
- strindex
- string
- strings
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
strtod
文字列を倍精度実数に変換.
呼び出し手順
d = strtod(str [,decimalseparator]) [d, endstr] = strtod(str [,decimalseparator])
引数
- str
文字列または文字列の行列
- decimalseparator
選択した10進数セパレータ: "." (デフォルト) または ",".
- d
実数または実数の行列
- endstr
文字列または文字列の行列 (
str
の中で数値の後に続く文字).
説明
[d, endstr] = strtod(str)
は,
文字列str
を
パースし,その内容を浮動小数点数として解釈して,
その値を実数として返します.
str
に数値が含まれていない場合,
d
は Nan
となります.
注意
この関数はWindowsとLinuxで動作が異なるstrtod C関数に基づきます. 実際, Windows では指数部にd または D を使用できますが, 16進数を使用することはできません.
strtod("%inf")
はNan
を 返すことに注意してください.
例
strtod('123.556This is a sample real') strtod('123,556This is a sample real', ",") [d,endstr] = strtod('123.556This is a sample real') strtod(['123.556This is a sample real','888.666 here']) [d,endstr] =strtod(['123.556This is a sample real','888.666 here']) [d,endstr] =strtod(['123.556This is a sample real','888,666 here'], ",")
履歴
バージョン | 記述 |
5.5.0 | 新しいオプション入力: decimalseparator (SEP 97). |
5.4.1 | str に数値が含まれていない場合,
d は以前のバージョンのように
0 ではなく,
Nan となります. |
Report an issue | ||
<< strsubst | Strings | strtok >> |