示例#1
0
 /// <summary>
 /// Executes the specified job.
 /// </summary>
 /// <param name="job">The job to execute.</param>
 /// <exception cref="System.Exception">Error while executing script</exception>
 public void Execute(string job)
 {
     if (ScilabEntryPoint.SendScilabJob(job) != 0)
     {
         throw new Exception("Error while executing script");
     }
 }
示例#2
0
 /// <summary>
 /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
 /// </summary>
 /// <exception cref="System.Exception">Error while closing scilab engine</exception>
 public void Dispose()
 {
     if (ScilabEntryPoint.TerminateScilab(null) != 1)
     {
         throw new Exception("Error while closing scilab engine");
     }
 }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ScilabEngine"/> class.
 /// </summary>
 /// <exception cref="System.Exception">Error while starting scilab engine</exception>
 public ScilabEngine()
 {
     if (ScilabEntryPoint.StartScilab(null, null, 0) != 1)
     {
         throw new Exception("Error while starting scilab engine");
     }
 }