LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
plot.m
1function plot(self, showTaskGraph)
2% PLOT(SELF, SHOWTASKGRAPH)
3
4% Copyright (c) 2012-2026, Imperial College London
5% All rights reserved.
6
7if nargin<2 %~exist('showTaskGraph','var')
8 showTaskGraph = false;
9end
10
11plotGraph(self);
12if showTaskGraph
13 plotTaskGraph(self);
14end
15end