analysisusingpythonbegin
Use at the beginning of the script to improve the performance of the OML-Python bridge commands and in conjunction with the analysisusingpythonend command.
Syntax
analysisusingpythonbegin()
Example
analysisusingpythonbegin()
x=0;
evalpythonscript('y=0')
while x ~= 100
       x=x+1;
	exporttopython(x,'x');
	evalpythonscript('y=y+x');
end
analysisusingpythonend()