Skip to content
Snippets Groups Projects
Commit 87b680d2 authored by Vincent Eberle's avatar Vincent Eberle
Browse files

merge prep

parent acf2634a
No related branches found
No related tags found
1 merge request!591New pointwise functionality
Pipeline #91921 failed
......@@ -115,7 +115,8 @@ def exponentiate(v, base):
def _exponentiate_helper(v, base):
return (np.power(base, v), np.log(base) * np.power(base, v))
tmp = np.power(base, v)
return (tmp , np.log(base) * tmp)
ptw_dict = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment