Allen-ISD-Computer-Science / REPO_AutomaticDifferentiation_2024

Given some input equation, provide a numerical derivative at a given point. The user have a standard text input for the equation and point and the algorithm will provide the numerical derivative along with the steps the algorithm took to derive it. This algorithm will be able to differentiate trigonometric function, logarithmic, and exponentials.
GNU General Public License v3.0
0 stars 0 forks source link

Task: Add global constants like e and pi for user convenience #37

Closed DragonflyRobotics closed 6 months ago

DragonflyRobotics commented 7 months ago

This task requires the explicit entry of the Pi UTF-8 and e characters to be recognized and replaced with their decimal (high precision) expansions for computing. This ties into #27 since trigonometric functions often utilize Pi, and logarithms often use e.

aryanjverma commented 7 months ago

60f0226c41fccb74f07ede5e2c3eeb6a08ddee0c

DragonflyRobotics commented 6 months ago

With commit c6bc1011d02014cb24e37f2000ca9cb40ec53091, several tests include Pi and e and they all pass. No specific code coverage but preprocess is well covered.