Hi,
I am doing a project in Python, I want to open Matlab through it then one model and after opening that model I want to apply hilite_system on that model to hilite any sub-system of model.
I got solution to open Matlab using Python as:

Code:
import subprocess
subprocess.call('matlab');
if you run this script in python it will open Matlab,
now how to open model and how to execute a matlab command...