-
Notifications
You must be signed in to change notification settings - Fork 37
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
@sym/{ctranspose,transpose}: *transpose does not work on None #1215
Comments
This is a prerequisite for making @sym/horzcat Array-compatible. Partially fixes <gnu-octave#1215>. * inst/@sym/transpose.m: Implement it.
This is a prerequisite for making @sym/horzcat Array-compatible. Partially fixes <gnu-octave#1215>. * inst/@sym/transpose.m: Implement it.
I guess that's right, especially if that is convenient for other code. I'm not really concerned about them being errors either: anyone hitting this In Real Life has likely had something go wrong... But again, I suspect you need it for other reasons... |
Yep, we need this for our 2D-sym-compatible functions otherwise tests will fail. I think |
This is a prerequisite for making @sym/horzcat Array-compatible. Partially fixes <#1215>. * inst/@sym/transpose.m: Implement it.
I run into the following issues while improving #1194.
Let
none = pycall_sympy__ ('return None')
.Then both
none.'
andnone'
giveerror: Python exception: AttributeError: 'NoneType' object has no attribute
...I think both
none.'
andnone'
should evaluate tonone
. WDYT?The text was updated successfully, but these errors were encountered: