


xxsimOpenSimulator - Open the simulator.
Syntax:
result = xxsimOpenSimulator()
Inputs:
takes no arguments.
Outputs:
result = returns true if the simulator opened without errors, false otherwise.
Examples:
xxsimOpenSimulator()
Opens the simulator. Returns true if the simulator opened without errors, false otherwise.
See also: xxsimProcessModel, xxsimRun
Author: Controllab Products B.V.
email: info@controllab.nl
Website: http://www.controllab.nl
November 2015


0001 function retval = xxsimOpenSimulator() 0002 % xxsimOpenSimulator - Open the simulator. 0003 % 0004 % Syntax: 0005 % result = xxsimOpenSimulator() 0006 % 0007 % Inputs: 0008 % takes no arguments. 0009 % 0010 % Outputs: 0011 % result = returns true if the simulator opened without errors, false otherwise. 0012 % 0013 % Examples: 0014 % xxsimOpenSimulator() 0015 % Opens the simulator. Returns true if the simulator opened without errors, false otherwise. 0016 % 0017 % See also: xxsimProcessModel, xxsimRun 0018 % 0019 % Author: Controllab Products B.V. 0020 % email: info@controllab.nl 0021 % Website: http://www.controllab.nl 0022 % November 2015 0023 0024 %------------- BEGIN CODE -------------- 0025 0026 if(nargin>0) 0027 error('Too many input arguments: xxsimOpenSimulator does not expect any input arguments.'); 0028 end; 0029 0030 % 0031 % make the call to open the simulator 0032 % 0033 retval = xrlinvoke('xxsim.simulator.openSimulator'); 0034 0035 end 0036 %------------- END OF CODE --------------