-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sum, max, and min np like methods of NDVarArray #350
Conversation
looking at the list of np functions in their docs: |
any, all, mean and prod added. I also added some tests for NDVarArray expressions. I think it is ready for a review |
Should we also fix issue #341 in this pull request? Can also be in another one probably |
I am fine both with including it in this PR or another one. Do you already know how to fix that issue? If not, I can look into it |
I am adding the max and min functions in NDVarArray. For now same as sum, but I plan to also implement the 'axis' and 'out' options.
Any good suggestion of what other np methods we could use?