LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
modelView.m
1function modelView(self)
2% MODELVIEW() - Open model in LINE Compose Desktop viewer
3
4self.getAvgHandles(); % create measures
5s = SolverJMT(self, Solver.defaultOptions, jmtGetPath);
6s.writeJSIM(self);
7jsimFile = [s.getFilePath, filesep, s.getFileName, '.jsim'];
8viewerPath = lineViewerGetPath();
9system(sprintf('java -jar "%s" "%s" &', viewerPath, jsimFile));
10end