Borrar filtros
Borrar filtros

How can I import python module properly instead of namespace package

20 visualizaciones (últimos 30 días)
Przemyslaw Niedziela
Przemyslaw Niedziela el 12 de Sept. de 2022
Comentada: Al Danial el 4 de Sept. de 2024 a las 2:24
I'm trying to import python module asammdf with:
py.importlib.import_module('asammdf');
it gives me the following:
'<module 'asammdf' (namespace)>'
but the:
'<module 'asammdf' from 'C:\\Program Files\\Python38\\lib\\site-packages\\asammdf\\__init__.py'>'
was expected.
Once I try using the library with:
MDF = py.asammdf.MDF();
I will recieve:
Unable to resolve the name py.asammdf.MDF
Any thouights how can i solve it?
* I already reinstalled python and checked the same lib on python cosole - it works there.

Respuestas (1)

Al Danial
Al Danial el 16 de Sept. de 2022
Try assigning the import to a variable:
asammdf = py.importlib.import_module('asammdf');
then
MDF = asammdf.MDF();
  4 comentarios
Eros
Eros el 3 de Sept. de 2024 a las 9:05
Hello @Al Danial,
with this command the output is only MFD.start_time, nothing else.
What am I doing wrong?
Also, having chosen the MF4 file, how can I associate the DBC with it?
Thanks
Al Danial
Al Danial el 4 de Sept. de 2024 a las 2:24
I know almost nothing about asmmdf or its MDF function. Best get that information from the MDF documentation or sources other than this forum.

Iniciar sesión para comentar.

Categorías

Más información sobre Call Python from MATLAB en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by