[sympy] Re: Any way to define a function with parameters?

2020-03-28 Thread Jisoo Song
2020년 3월 28일 토요일 오전 12시 1분 34초 UTC+9, S.Y. Lee 님의 말: > > I don't think that a*x**2 + b*x + c.is actually considered a 'Function', > but just as an 'Expression' in sympy. > And literally you can just apply (a*x**2 + b*x + c).subs({a: 1}) to do > evaluations with respect to any variables. > >

[sympy] Re: Any way to define a function with parameters?

2020-03-27 Thread S.Y. Lee
I don't think that a*x**2 + b*x + c.is actually considered a 'Function', but just as an 'Expression' in sympy. And literally you can just apply (a*x**2 + b*x + c).subs({a: 1}) to do evaluations with respect to any variables. On Friday, March 27, 2020 at 6:09:10 PM UTC+9, Jisoo Song wrote: > >