Conversation
This is for use with the Pytave project.
|
This was #509, reopened after pytave merge |
inst/@sym/pyobject.m
Outdated
|
|
||
| function y = pyobject (x) | ||
|
|
||
| y = py.sympy.S (char (x)); |
There was a problem hiding this comment.
this will need to be sympy (x) not char (x) b/c of recent changes.
|
My only nits to pick are the names. The name I also prefer |
|
I changed to |
|
Thanks for the reminder about the upstream issue, I had been wondering what the use case would be, now I see that you want to be able to assign a sym variable into a container, and not that the user is calling the conversion method explicitly. So the intent is that this effectively acts as an implicit casting operator. |
This is for use with the Pytave project.