<< Complex management API call_scilab (moteur Scilab) Double management >>

Scilab Help >> API call_scilab (moteur Scilab) > 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


Report an issue
<< Complex management API call_scilab (moteur Scilab) Double management >>