Mike Miller
Mike Miller
Does `setenv PYTHON 'LD_LIBRARY_PATH="" python'` work with the current release in Matlab? It doesn't work for me in Octave. Using `setenv LD_LIBRARY_PATH ''` is roughly equivalent, but may cause other...
> works in Octave using the `sympref ipc system` Thank you, hadn't tried that!
Here's a partial list I came up with some web scraping Functions already in octsympy that should be overloaded to allow numeric args: * [x] chebyshevT * [x] chebyshevU *...
Sorry, do you want me to merge this list into #215 or just a reminder for future visitors? Do you want to add tags on not-yet-implemented functions already mentioned in...
My only nits to pick are the names. The name `pyobject` isn't Matlab compatible, it's what we came up with to be the hidden implementation of PyObjects, which is fine,...
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...
Did you try defining the function prototype inside the `classdef` block and defining the method in a function file inside the `@sym` directory (but not inside a private subdirectory)? This...
You are referring to static methods only, right? Yes, that is the way the language works, whether inside or outside of the class, a static method is called with `classname.methodname()`....
If I'm reading the code right, sym objects are immutable, right? So making it a value class would incur unnecessary copies of the internal properties for no added benefit. I...
Yes, the way you defined `myMethod` it doesn't look like a method, it doesn't take an object argument, and you didn't call it on `this`. Maybe you meant either `this.myMethod()`...