How to convert python __name__ = '__main__' into MATLAB ?

23 views (last 30 days)
if __name__ == '__main__':
undistorb_images(None, None)

Answers (1)

Yongjian Feng
Yongjian Feng on 24 Jul 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 Comments
Yongjian Feng
Yongjian Feng on 27 Jul 2021
Accept the answer please if this fix the problem, then others know how to fix it.

Sign in to comment.

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!