LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
view.m
1function view(self, options)
2% VIEW(OPTIONS) Alias for jsimgView
3%
4% Opens the model in JMT's graphical editor (JSIMgraph).
5
6% Copyright (c) 2012-2026, Imperial College London
7% All rights reserved.
8
9if nargin < 2
10 options = Solver.defaultOptions();
11end
12self.jsimgView(options);
13end