Mat File into Pyhton, dict value at 0x000....

7 次查看(过去 30 天)
Hello guys!
i want to read .mat FIles into Python. My code looks like this:
import matlab.engine
eng = matlab.engine.start_matlab()
content = eng.load("Sink22.mat")
print("Class Matlab Meth:",type(content))
keys = content.keys()
print("Keys:", keys)
print("Key length:", len(keys))
values = content.values()
print("Values:",values)
print("Value length:", len(values))
When I print the "Values" i get the answer:
Values: dict_values([<matlab.object object at 0x000001761C55A3F0>])
Can someone explain me what this answer means?
Thanks a lot!

回答(1 个)

Pranav Verma
Pranav Verma 2021-2-16
编辑:Pranav Verma 2021-2-16
Hi Nick,
From your question, I understand that you are trying to print the "values" object. So before printing it out on the console, you can try checking the type of the variable "values" and then try using the appropriate typecasting or other string conversion methods to print out the desired value.
Alternatively, you can try checking if there are other packages available for importing mat files.
Thanks

类别

Help CenterFile Exchange 中查找有关 Call MATLAB from Python 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by