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

조회 수: 3 (최근 30일)
Nick Froidl
Nick Froidl 2021년 2월 11일
편집: Pranav Verma 2021년 2월 16일
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