Skip to content
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

Error using save #172

Closed
magronv opened this issue May 13, 2020 · 1 comment
Closed

Error using save #172

magronv opened this issue May 13, 2020 · 1 comment

Comments

@magronv
Copy link

magronv commented May 13, 2020

Dear musm,

I have the following error when trying to import variables values from Matlab. I have version 0.7.3 for the MATLAB package.

julia> using MATLAB
julia> s = MSession();
julia> mat"x=2";
julia> get_mvariable(s,:x)
Error using save
Variable 'x' not found.

ERROR: MATLAB.MEngineError("failed to get variable x from MATLAB session")
Stacktrace:
[1] get_mvariable(::MSession, ::Symbol) at /home/magron/.julia/packages/MATLAB/cVrxc/src/engine.jl:164
[2] top-level scope at none:0

Could you help me to figure this out?

Best regards,

Victor

@tqml
Copy link
Collaborator

tqml commented Feb 21, 2025

Hey @magronv

Replace get_mvariable(s,:x) with get_mvariable(:x). Here mat"" executes in the default session while you try to get the variable from session s where the variable doesn't exist.

Ideally, just run

$x = 2

afterwards, in julia there should be a variable x with the value of 2.

Hope that helps :)

@tqml tqml closed this as completed Feb 21, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants