Is there a tool to find the closest optimum preferred resistor values given a list of constraints?
For example I'm designing a filter but only have a few odd resistor and capacitor values to choose from and was trying to optimise for the combination of values that has the smallest difference from the parameters for the filter I've designed.
Currently as the set of resistors and constraints is so small I'm simply looping through every combination of component value and returning the values with the smallest total difference from the filter parameters.
This seems like a optimisation problem however it is non-linear so many of the tools such as google or-tools would not work.
Is there some tool that already accomplishes this goal?
Thanks in advance.