What is the utility of the out
parameter in certain numpy
functions such as cumsum
or cumprod
or other mathematical functions?
If the result is huge in size does it help to use the out
parameter to improve computational time or memory efficiency?
This thread gives some information about how to use it. But I want to know when should I use it and what could the benefits be?