- Aide Scilab
- Scilab
- Mots clés Scilab
- TMPDIR
- abort
- argn
- banner
- boolean
- break
- clear
- clearglobal
- comp
- debug
- errcatch
- errclear
- error
- exists
- exit
- external
- extraction
- getos
- getshell
- gstacksize
- ieee
- insertion
- inv_coeff
- iserror
- isglobal
- macr2tree
- matrices
- matrix
- mode
- mtlb_mode
- names
- null
- pause
- perl
- poly
- predef
- quit
- rational
- resume
- sciargs
- scilab
- stacksize
- startup
- symbols
- testmatrix
- type
- typename
- user
- varn
- what
- where
- whereami
- who
- whos
- with_atlas
- with_javasci
- with_macros_source
- with_pvm
- add_demo
- clearfun
- continue
- delbpt
- dispbpt
- edit
- error_table
- format
- funcprot
- funptr
- getdebuginfo
- getmd5
- getmemory
- getmodules
- getscilabmode
- getvariablesonstack
- getversion
- intppty
- lasterror
- macr2lst
- newfun
- readgateway
- setbpt
- ver
- warning
- who_user
- with_module
- with_texmacs
- with_tk
getversion
get scilab and modules version information
Calling Sequence
version = getversion() [version, opts] = getversion() version_numbers = getversion('scilab') versioninfo = getversion('scilab', 'string_info') version_numbers = getversion('<module>') versioninfo = getversion('<module>','string_info')
Arguments
- version
a string
- versioninfo
a string about version
- version_numbers
a integer vector
ver(1) Major version
ver(2) Minor version
ver(3) Maintenance version
ver(4) GIT timestamp
- opts
a vector of string :
[compiler, architecture,[ pvm, tk, modelicac, atlas,] release_mode, release_date, release_time]
Description
return in version the Scilab version name and in
opts build options which can be used to determine if
scilab has been build with pvm, tk , atlas or modelicac and give release date and time.
[ pvm, tk, modelicac, atlas,] are optional.
compiler: returns compiler used to build scilab ('GCC', 'VC++', 'PGI', 'ICC', 'SUN', 'UKN' unknown)
archicteture: 'x86' or 'x64'.
pvm: 'pvm' if pvm is enabled.
tk: 'tk' if tcl/tk is enabled.
modelicac: 'modelicac' if modelica compiler is ditributed with scilab/xcos.
atlas: 'atlas' if scilab was built with atlas (or MKL).
Examples
getversion() [version, opts] = getversion() COMPILER = opts(1) ARCH = opts(2) or(opts == 'modelicac') or(opts == 'pvm') or(opts == 'tk') or(opts == 'atlas') RELEASE_MODE = opts($-2) RELEASE_DATE = opts($-1) RELEASE_TIME = opts($) version = getversion('scilab') versionstr = getversion('scilab','string_info') version = getversion('overloading') versionstr = getversion('overloading','string_info')
See Also
- getmodules — returns list of modules installed in Scilab
| << getvariablesonstack | Scilab | intppty >> |