-
Notifications
You must be signed in to change notification settings - Fork 8
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
inverse assignment of Q[:]=value should not break into individual indices #83
Comments
@kmaork: as discussed: will appreciate if you can take on yourself the implementation of one such case-specific inverter, say for np.transpose, or element-wise, or both |
perfect. So my suggestion: |
As of function-specific inverse assignment: consider this case as an example: A = iquib(x2d) # where x2d is a 2d array
B = np.transpose(A)
B.assign_value[y2d] # where y2d is a new 2d array the transpose-specific inverse assigned should transpose the value (here, So to conclude: |
when inverting element-wise functions, need to preserve colon indexing. This is important because of three reasons:
now:
yeilds:
but then:
yields
The text was updated successfully, but these errors were encountered: