forked from sympy/sympy
-
Notifications
You must be signed in to change notification settings - Fork 0
Release Notes for 1.1
Björn Dahlgren edited this page Sep 26, 2016
·
6 revisions
-
lambdify
now usesmodules='numpy'
by default if NumPy is installed. Previously it usedmodules=['math', 'numpy', 'mpmath', 'sympy']
. It still usesmodules=['math', 'mpmath', 'sympy']
if NumPy is not installed, although this may change in a future version. If you relied on the old behavior of mixing NumPy and non-NumPy functions, you should explicitly pass themodules
argument oflambdify
(the third argument). (#11468) -
as_finite_diff
is now deprecated. Users are encouraged to useDerivative.as_finite_difference
instead. A new helper function calleddifferentiate_finite
helps the user to differentiate an expression and replaceDerivative
instances with finite difference approximations.
- Tensorflow support in lambdify (#11439)
- ReferenceFrame.orient() accepts rotation matrices manually (#11552)
- Solutions to radical equations that return a ComplementSet no longer raise an error and solutions to the same which cannot be affirmatively verified to be solutions are returned in a ConditionSet (#11537)