Scilab-Branch-5.3-GIT
      
      - Scilab help
 - Strings
 - ascii
 - blanks
 - code2str
 - convstr
 - emptystr
 - eval
 - evstr
 - grep
 - isalphanum
 - isascii
 - isdigit
 - isletter
 - isnum
 - justify
 - length
 - part
 - regexp
 - sci2exp
 - str2code
 - strcat
 - strchr
 - strcmp
 - strcmpi
 - strcspn
 - strindex
 - string
 - strings
 - stripblanks
 - strncpy
 - strrchr
 - strrev
 - strsplit
 - strspn
 - strstr
 - strsubst
 - strtod
 - strtok
 - tokenpos
 - tokens
 - tree2code
 
Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
strtod
Convert string to double.
Calling Sequence
d = strtod(str) [d,endstr] = strtod(str)
Arguments
- str
 A character string or matrix of character strings
- d
 A real or matrix of reals
- endstr
 A character string or matrix of character strings (next character in str after the numerical value).
Description
[d,endstr] = strtod(str) Parses strings str
    interpreting its content as a floating point number and returns its value
    as a real.
Examples
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'])
| << strsubst | Strings | strtok >> |