This file is indexed.

/usr/share/doc/libsundials-serial/README.Debian is in libsundials-serial 2.5.0-3ubuntu3.

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
sundials for Debian
----------------

Configuring Octave's startup


"""
Matlab will execute a file named 'startup.m' in the directory it was called from on the command line. Octave does not. It will, however, execute a file named '.octaverc' which can be edited to execute existing files

if ( exist ('startup.m', 'file') )
  source ('startup.m')  # load startup.m like matlab
endif
"""

According to the above doc create or add the folliwng lines to your .octaverc to activate sundials bindings for octave:

     % SUNDIALS Toolbox startup M-file, if it exists.
     if ( exist('startup_STB.m','file') )
        source ('startup_STB.m')  # load startup.m like matlab
     end


 -- Christophe Trophime <christophe.trophime@lncmi.cnrs.fr>  Mon, 24 Oct 2011 15:01:41 +0200