Name

win64 — Determine whether Windows x64 version of Scilab

Calling Sequence

win64()

Description

tf =win64() returns boolean (%t) for Windows x64 of Scilab and boolean (%f) otherwise.

Example

 
if MSDOS then
  if win64() then
    disp('Scilab built for Windows x64.');
  else
    disp('Scilab built for Windows 32 bits.');
  end
end
 

See Also

MSDOS

Authors

Allan CORNET