Browse Source

added difference_of_simplified_exponential_functions function

master
fd7794 11 months ago
parent
commit
a07552e3d0
  1. 6
      src/main/py/read_math_function.py

6
src/main/py/read_math_function.py

@ -117,4 +117,8 @@ def sum_of_simplified_exponential_functions(type, function):
if type !="se":
return False
summands = function.split('+')
return simplify_exponential_function('e', summands)
return simplify_exponential_function('e', summands)
def difference_of_simplified_exponential_functions(type, function):
if type !="de":
return False
Loading…
Cancel
Save