diff --git a/source/wrappers/matlab/pyuda_interface/+matpyuda/@Client/Client.m b/source/wrappers/matlab/pyuda_interface/+matpyuda/@Client/Client.m index afcc377c..eb83f102 100644 --- a/source/wrappers/matlab/pyuda_interface/+matpyuda/@Client/Client.m +++ b/source/wrappers/matlab/pyuda_interface/+matpyuda/@Client/Client.m @@ -68,7 +68,7 @@ function reset_connection(obj) function result = get(obj, signal, source) pyobj = obj.python_client.get(string(signal), string(source)); - result = convert_pyuda_obj_to_matlab_type; + result = convert_pyuda_obj_to_matlab_type(pyobj); end function result = get_batch(obj, signals, sources) diff --git a/source/wrappers/matlab/pyuda_interface/+matpyuda/MastClient.m b/source/wrappers/matlab/pyuda_interface/+matpyuda/MastClient.m index b843cda4..432c622e 100644 --- a/source/wrappers/matlab/pyuda_interface/+matpyuda/MastClient.m +++ b/source/wrappers/matlab/pyuda_interface/+matpyuda/MastClient.m @@ -18,7 +18,6 @@ options.pass_number = py.None options.machine string = 'mastu' end - options % args = py.dict(options); % cannot unpack py dict into kwargs through matlab pyobj = obj.python_client.list(list_type=py.int(options.list_type), shot=options.shot, ... alias=options.alias, signal_type=options.signal_type, signal_search=options.signal_search, ... @@ -40,7 +39,6 @@ options.pass_number = py.None options.machine string = 'mastu' end - options % args = py.dict(options); % cannot unpack py dict into kwargs through matlab pyobj = obj.python_client.list_signals(shot=options.shot, ... alias=options.alias, signal_type=options.signal_type, signal_search=options.signal_search, ... diff --git a/source/wrappers/matlab/pyuda_interface/+matpyuda/get_attribute_value.m b/source/wrappers/matlab/pyuda_interface/+matpyuda/get_attribute_value.m index 7431f85c..fd2220e5 100644 --- a/source/wrappers/matlab/pyuda_interface/+matpyuda/get_attribute_value.m +++ b/source/wrappers/matlab/pyuda_interface/+matpyuda/get_attribute_value.m @@ -55,6 +55,5 @@ ME = MException("unpack_python_list:TyeNotImplemented", "datatype %s not implemented", t_str); addCause(exception, ME); throw(exception) - end end end \ No newline at end of file