Disables some features (plotting, gui creation, Tcl/Tk...) and leaves only the computing engine (original) (raw)

Scilab 5.3.3

Please note that the recommended version of Scilab is 2026.0.1. This page might be outdated.
See the recommended documentation of this function

Scilab help >> call_scilab API (Scilab engine) > DisableInteractiveMode

DisableInteractiveMode

Disables some features (plotting, gui creation, Tcl/Tk...) and leaves only the computing engine

void DisableInteractiveMode(void);

Description

Calling this fonction will disable some features of Scilab.

Examples

// A simple DisableInteractiveMode example

DisableInteractiveMode(); int code=SendScilabJob("plot3d()"); /* This will failed since plot3d is among the disable features*/ if (code!=0){ char lastjob[4096]; if (GetLastJob(lastjob,4096)) { printf("Failed command: %s\n",lastjob); } }

See Also