v0.2.0 #10

Merged
jono merged 11 commits from v0.2.0-dev into main 2025-06-17 18:36:26 +00:00
5 changed files with 143 additions and 36 deletions
Showing only changes of commit d27497488f - Show all commits

View File

@ -56,7 +56,7 @@ print(f"Value of f1 at x=5 is: {y_val}")
# > Value of f1 at x=5 is: 30.0 # > Value of f1 at x=5 is: 30.0
# 3. Get the derivative: 4x - 3 # 3. Get the derivative: 4x - 3
df1 = f1.differential() df1 = f1.derivative()
print(f"Derivative of f1: {df1}") print(f"Derivative of f1: {df1}")
# > Derivative of f1: 4x - 3 # > Derivative of f1: 4x - 3