mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-15 14:05:11 +00:00
[PR #1388] feat: added derivative and second derivative approximations #1987
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/TheAlgorithms/C/pull/1388
State: closed
Merged: No
Description of Change
Added two new files to the numerical methods directory.
File 1: differentiation_midpoint.c -> Uses the symmetric derivative to calculate the derivative for any function at x as long as x is defined
File 2: differentiation_second_mid.c -> Uses the second derivative three-point midpoint formula to calculate the second derivative for any function at x as long as x is defined
References
Checklist
Notes: