This file is indexed.

/usr/share/octave/packages/ocs-0.1.5/nls/nls_stationary.m is in octave-ocs 0.1.5-6.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
## Copyright (C) 2006,2007,2008  Carlo de Falco            
##
## This file is part of:
## OCS - A Circuit Simulator for Octave
##
## OCS is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program (see the file LICENSE); if not,
## see <http://www.gnu.org/licenses/>.
##
## author: Carlo de Falco <cdf _AT_ users.sourceforge.net> 

## -*- texinfo -*-
## @deftypefn{Function File} {[@var{out}, @var{niter}]} = nls_stationary @
## (@var{instruct},@var{x},@var{tol},@var{maxit})
## Compute the stationary state solution @var{out} of the system described
## by @var{instruct}.
##
## @var{x} is the initial guess used by the Newton-Raphson algorithm implemented in
## @code{nls_newton_raphson}, while @var{tol} and @var{maxit} are the corresponding 
## parameters.
## 
## The optional output @var{niter} returns the number of Newton iterations
## needed to reach convergence.
##
## @seealso{nls_newton_raphson}
## @end deftypefn

function [out, varargout] = nls_stationary(outstruct,x,tol,maxit)

  ## Check input
  ## FIXME: add input check!
  if nargin != 4
    error("nls_stationary: wrong number of input parameters.");
  endif

  [A0,B,C] = asm_initialize_system(outstruct,x);
  JAC = @(x) TSTSTATFUNJAC(outstruct,x,B);
  RES = @(x) TSTSTATFUNRES(outstruct,x,B,C);
  UPD = @(x) TSTSTATUP(outstruct,x);
  [out,ii,resnrm] = nls_newton_raphson(x,RES,JAC,tol,maxit,0,UPD);

  if nargin > 1
    varargout{1} = ii;
  endif

endfunction

## Jacobian for steady state problems
function lhs = TSTSTATFUNJAC(outstruct,x,B,Jac,res)

  if nargin < 5
    [A1,Jac,res] = asm_build_system(outstruct,x,0);
  endif
  lhs = (B + Jac); 

endfunction
## Residual for steady state problem
function rhs = TSTSTATFUNRES(outstruct,x,B,C,Jac,res)

  if nargin < 6
    [A1,Jac,res] = asm_build_system(outstruct,x,0);
  endif
  rhs = (res + C + B*x);

endfunction
## Update for transient problem
function update = TSTSTATUP(outstruct,x)

  [A1,Jac,res] = asm_build_system(outstruct,x,0);
  update = {Jac,res};

endfunction