I'm making a program to control a LCR meter (the specifics aren't important). Therefore I need two nested while loops (easy example):
while x <= stopFrequency:
y = startVoltage
while y <= stopVoltage:
getCapacity = y * 2
y += stepValueVoltage
x += stepValueFrequency
Now I need to make a plot for the different frequency's (outer loop) of y and getCapacity. I can get a plot of y and getCapacity for one frequency. But for more, I don't know how to get the graphs on one plot.