sage: t = var(’t’) sage: x = function(’x’, t) sage: y = function(’y’, t) sage: diff(x(t)*y(t),t)
TypeError: Substitution using function-call syntax and unnamed arguments has been removed. You can use named arguments instead, like EXPR(x=..., y=...)
| 1 | initial version | |
sage: t = var(’t’) sage: x = function(’x’, t) sage: y = function(’y’, t) sage: diff(x(t)*y(t),t)
TypeError: Substitution using function-call syntax and unnamed arguments has been removed. You can use named arguments instead, like EXPR(x=..., y=...)
How the new version achieves this: diff(x(t)*y(t)) in the latest version?
sage: t = var(’t’)
sage: x = function(’x’, t)
sage: y = function(’y’, t)
sage: diff(x(t)*y(t),t) diff(x(t)*y(t),t)
TypeError: Substitution using function-call syntax and unnamed arguments arguments
has been removed. You can use named arguments instead, like EXPR(x=..., y=...)y=...)
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.