We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have a matlab package structure like so:
C:\path\matlab\+package\+folder
and I use addpath('C:/path/matlab'). So I should theoretically be able to do:
oct2py.octave.package.folder.my_function(parameters)
but I get the error that 'Value "package" does not exist in Octave workspace'. If I add the whole path with addpath, I can call the function:
oct2py.octave.my_function(parameters)
so there seems to be an issue with handling package folders.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a matlab package structure like so:
C:\path\matlab\+package\+folder
and I use addpath('C:/path/matlab'). So I should theoretically be able to do:
oct2py.octave.package.folder.my_function(parameters)
but I get the error that 'Value "package" does not exist in Octave workspace'. If I add the whole path with addpath, I can call the function:
oct2py.octave.my_function(parameters)
so there seems to be an issue with handling package folders.
The text was updated successfully, but these errors were encountered: