I am learning Sympy to know the Symbolic operations in Python. I want to find out the derivative of a matrix.
How could I derivate the matrix in respect to b.
import sympy as sp
B = sp.Matrix([[(a*c),(b**2)],[(b*d),(d*a)]])
B
This can not help me to give my answer.