Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
src/sage/matrix/matrix2.pyx: Move import from sage.misc.derivative in…
Browse files Browse the repository at this point in the history
…to method
  • Loading branch information
Matthias Koeppe committed Sep 30, 2021
1 parent 83b5038 commit acca6c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/matrix/matrix2.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ from sage.rings.complex_double import CDF
from sage.rings.real_mpfr import RealField
from sage.rings.complex_mpfr import ComplexField
from sage.rings.finite_rings.integer_mod_ring import IntegerModRing
from sage.misc.derivative import multi_derivative
from sage.arith.numerical_approx cimport digits_to_bits
from copy import copy

Expand Down Expand Up @@ -15123,6 +15122,7 @@ cdef class Matrix(Matrix1):
sage: v.derivative(x,x)
(0, 0, 2)
"""
from sage.misc.derivative import multi_derivative
return multi_derivative(self, args)

def exp(self):
Expand Down

0 comments on commit acca6c2

Please sign in to comment.