Skip to content Skip to sidebar Skip to footer
Showing posts with the label Derivative

Filtering Out Specific Terms

I have written a function that uses derivative product rule to find derivative of a term: def find_… Read more Filtering Out Specific Terms

Compute The Jacobian Matrix In Python

import numpy as np a = np.array([[1,2,3], [4,5,6], [7,8,9]]) b = np… Read more Compute The Jacobian Matrix In Python