Determine whether Windows x64 version of Scilab (Windows only)
win64()
tf =win64() returns boolean (%t) for Windows x64 of Scilab and boolean (%f) otherwise.
if getos() == 'Windows' then if win64() then disp('Scilab built for Windows x64.'); else disp('Scilab built for Windows 32 bits.'); end end