This file is indexed.

/usr/lib/scilab-swt/man/wrcoef2.htm is in scilab-swt 0.1.0rc4-5.

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
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<html>
  <head>
    <title>wrcoef2</title>
  </head>
  <body bgcolor="#FFFFFF">
    <center>Scilab Wavelet Toolbox Function  </center>
    <div align="right">Last update : June 2007  </div>
    <p>
      <b>wrcoef2</b> - Restruction from single branch from two dimension multiple level decompstion   </p>
    <h3>
      <font color="blue">Calling Sequence</font>
    </h3>
    <dl>
      <dd>
        <tt>X=wrcoef2(type,c,s,wname,[N])</tt>
      </dd>
      <dd>
        <tt>X=wrcoef2(type,c,s,Lo_R,Hi_R,[N])</tt>
      </dd>
    </dl>
    <h3>
      <font color="blue">Parameters</font>
    </h3>
    <ul>
      <li>
        <tt>
          <b>type  </b>
        </tt>
    : approximation or detail, 'a', 'h', 'v' or 'd'.
  </li>
      <li>
        <tt>
          <b>wname  </b>
        </tt>
    : wavelet name
  </li>
      <li>
        <tt>
          <b>X  </b>
        </tt>
    : reconstruction
  </li>
      <li>
        <tt>
          <b>Lo_R  </b>
        </tt>
    : lowpass synthesis filter
  </li>
      <li>
        <tt>
          <b>Hi_R  </b>
        </tt>
    : highpass syntheis filter
  </li>
      <li>
        <tt>
          <b>c  </b>
        </tt>
    : coefficent array
  </li>
      <li>
        <tt>
          <b>s  </b>
        </tt>
    : size array
  </li>
      <li>
        <tt>
          <b>N  </b>
        </tt>
    : restruction level
  </li>
    </ul>
    <h3>
      <font color="blue">Description</font>
    </h3>
    <p>
  wrcoef2 is for reconstruciton from single branch of two dimension multiple level 
  decompostion.	Extension mode is stored as a global variable and 
  could be changed with dwtmode. If N is omitted, maximum level is 
  used.
  </p>
    <h3>
      <font color="blue">Examples</font>
    </h3>
    <pre>
  x=rand(100,100);
  [C,S]=wavedec2(x,3,'db2');
  A2=wrcoef2('a',c,S,'db2',2);
 </pre>
    <h3>
      <font color="blue">Author</font>
    </h3>
    <p>Roger Liu and Isaac Zhi  </p>
    <h3>
      <font color="blue">See Also</font>
    </h3>
    <p>
      <a href="wavedec2.htm">
        <tt>
          <b>wavedec2</b>
        </tt>
      </a>,&nbsp;&nbsp;<a href="waverec2.htm">
        <tt>
          <b>waverec2</b>
        </tt>
      </a>,&nbsp;&nbsp;<a href="upcoef2.htm">
        <tt>
          <b>upcoef2</b>
        </tt>
      </a>,&nbsp;&nbsp;</p>
  </body>
</html>