tBuLi / symfit

Symbolic Fitting; fitting as it should be.
http://symfit.readthedocs.org
MIT License
233 stars 17 forks source link

Creating several parameters with some missing bounds #295

Open Jhsmit opened 4 years ago

Jhsmit commented 4 years ago

from symfit import parameters

parameters('a b c', min=[1, 2, None], max=[5, None, None])

Results in:

TypeError: '>' not supported between instances of 'int' and 'NoneType'

While

from symfit import Parameter

Parameter('a', min=1, max=None)

is fine