How to convert python __name__ = '__main__' into MATLAB ?
16 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
if __name__ == '__main__':
undistorb_images(None, None)
2 Commenti
Risposte (1)
Yongjian Feng
il 24 Lug 2021
Not sure about what you really want.
For python code,
if __name__ == '__main__':
it means your python script is running as the main program by the python interpreter (as opposite to being imported by some other python scripts).
This is equivalent to a separate matlab script that calls the first matlab script.
5 Commenti
Yongjian Feng
il 27 Lug 2021
Accept the answer please if this fix the problem, then others know how to fix it.
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!