analysisusingpythonend

Must be used in conjunction with the analysisusingpythonbegin command at the end of the script.

Syntax

analysisusingpythonend()

Example

analysisusingpythonbegin()
x=0;
evalpythonscript('y=0')
while x ~= 100
	x=x+1;
	exporttopython(x,'x');
	evalpythonscript('y=y+x');
end
analysisusingpythonend()

Comments

Note: The Python 'input' command does not work between analysisusingpythonbegin and analysisusingpythonend.