[sage-support] Re: Function-call syntax deprecation

2021-09-10 Thread Federico Galetto
Thank you both for your suggestions! The gamma(t)=... solution gave me some other error down the line, while appending .function(t) to the definition of gamma worked but raised errors from later calls to simplify_full(). In the end, replacing x with t=x in the definition of my 'frame' function

[sage-support] Re: Function-call syntax deprecation

2021-09-09 Thread Kwankyu
gamma(t) = vector([t,t^2,t^3]) is a bit simpler. -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-support+unsubscr...@googlegroups.com. To view this

[sage-support] Re: Function-call syntax deprecation

2021-09-09 Thread Matthias Koeppe
Instead of: gamma=vector([t,t^2,t^3]) use: gamma=vector([t,t^2,t^3]).function(t) Alternatively, keep gamma as is and use gamma(t=x) instead of gamma(x). On Thursday, September 9, 2021 at 1:18:52 PM UTC-7 Federico Galetto wrote: > Hello, I get a warning due to function-call syntax deprecation