LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
solver_custom_analyzer.m
1function [QN,UN,RN,TN,CN,XN,runtime] = solver_custom_analyzer(sn, options)
2% [QN,UN,RN,TN,CN,XN,RUNTIME] = SOLVER_CUSTOM_ANALYZER(QN, OPTIONS)
3
4% Copyright (c) 2012-2026, Imperial College London
5% All rights reserved.
6
7Tstart = tic;
8
9line_printf('Any activity prior or after launching the solution algorithm needs to be implemented in %s.m\n.',mfilename);
10[QN,UN,RN,TN,CN,XN] = solver_custom(sn, options);
11
12QN(isnan(QN))=0;
13CN(isnan(CN))=0;
14RN(isnan(RN))=0;
15UN(isnan(UN))=0;
16XN(isnan(XN))=0;
17TN(isnan(TN))=0;
18
19runtime = toc(Tstart);
20end