How can I import python module properly instead of namespace package
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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.
0 Commenti
Risposte (1)
Al Danial
il 16 Set 2022
Try assigning the import to a variable:
asammdf = py.importlib.import_module('asammdf');
then
MDF = asammdf.MDF();
4 Commenti
Eros
il 3 Set 2024
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
il 4 Set 2024
I know almost nothing about asmmdf or its MDF function. Best get that information from the MDF documentation or sources other than this forum.
Vedere anche
Categorie
Scopri di più su Call Python from MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!