08-20-2026 09:10 AM
A very general question
Currently using a Python program to calculate spectrum parameters
LED47_0-1787234742930.png
Starts and terminates a Python interpreter each time
In order to speed up my processing is there any way that I can start the Python interpreter, calculate without terminating?
I'm thinking this would save time and I could calculate multiple spectrums in succession.
Solved! Go to Solution.
08-20-2026 09:21 AM
You can use the built in Python node. You can open the node and leave it open when the VI runs and close it when your program exits. I found the first calculation in the node is "slow", then subsequent calls are significantly faster.
08-20-2026 12:51 PM
Yes that makes sense Thank you