Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 3e60ff9d4d6f58c8fbd17208f14089fa > files > 154

octave-doc-3.2.3-3mdv2010.0.i586.rpm

<html lang="en">
<head>
<title>Differential-Algebraic Equations - Untitled</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Untitled">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Differential-Equations.html#Differential-Equations" title="Differential Equations">
<link rel="prev" href="Ordinary-Differential-Equations.html#Ordinary-Differential-Equations" title="Ordinary Differential Equations">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
  pre.display { font-family:inherit }
  pre.format  { font-family:inherit }
  pre.smalldisplay { font-family:inherit; font-size:smaller }
  pre.smallformat  { font-family:inherit; font-size:smaller }
  pre.smallexample { font-size:smaller }
  pre.smalllisp    { font-size:smaller }
  span.sc    { font-variant:small-caps }
  span.roman { font-family:serif; font-weight:normal; } 
  span.sansserif { font-family:sans-serif; font-weight:normal; } 
--></style>
</head>
<body>
<div class="node">
<a name="Differential-Algebraic-Equations"></a>
<a name="Differential_002dAlgebraic-Equations"></a>
<p>
Previous:&nbsp;<a rel="previous" accesskey="p" href="Ordinary-Differential-Equations.html#Ordinary-Differential-Equations">Ordinary Differential Equations</a>,
Up:&nbsp;<a rel="up" accesskey="u" href="Differential-Equations.html#Differential-Equations">Differential Equations</a>
<hr>
</div>

<h3 class="section">23.2 Differential-Algebraic Equations</h3>

<p>The function <code>daspk</code> can be used to solve DAEs of the form

<pre class="example">     0 = f (x-dot, x, t),    x(t=0) = x_0, x-dot(t=0) = x-dot_0
</pre>
   <p class="noindent">where
x-dot
is the derivative of x.  The equation is solved using Petzold's
DAE solver <span class="sc">Daspk</span>.

<!-- ./DLD-FUNCTIONS/daspk.cc -->
   <p><a name="doc_002ddaspk"></a>

<div class="defun">
&mdash; Loadable Function: [<var>x</var>, <var>xdot</var>, <var>istate</var>, <var>msg</var>] = <b>daspk</b> (<var>fcn, x_0, xdot_0, t, t_crit</var>)<var><a name="index-daspk-1789"></a></var><br>
<blockquote><p>Solve the set of differential-algebraic equations

     <pre class="example">          0 = f (x, xdot, t)
</pre>
        <p>with

     <pre class="example">          x(t_0) = x_0, xdot(t_0) = xdot_0
</pre>
        <p>The solution is returned in the matrices <var>x</var> and <var>xdot</var>,
with each row in the result matrices corresponding to one of the
elements in the vector <var>t</var>.  The first element of <var>t</var>
should be t_0 and correspond to the initial state of the
system <var>x_0</var> and its derivative <var>xdot_0</var>, so that the first
row of the output <var>x</var> is <var>x_0</var> and the first row
of the output <var>xdot</var> is <var>xdot_0</var>.

        <p>The first argument, <var>fcn</var>, is a string, inline, or function handle
that names the function f to call to compute the vector of
residuals for the set of equations.  It must have the form

     <pre class="example">          <var>res</var> = f (<var>x</var>, <var>xdot</var>, <var>t</var>)
</pre>
        <p class="noindent">in which <var>x</var>, <var>xdot</var>, and <var>res</var> are vectors, and <var>t</var> is a
scalar.

        <p>If <var>fcn</var> is a two-element string array or a two-element cell array
of strings, inline functions, or function handles, the first element names
the function f described above, and the second element names a
function to compute the modified Jacobian

     <pre class="example">                df       df
          jac = -- + c ------
                dx     d xdot
</pre>
        <p>The modified Jacobian function must have the form

     <pre class="example">          
          <var>jac</var> = j (<var>x</var>, <var>xdot</var>, <var>t</var>, <var>c</var>)
</pre>
        <p>The second and third arguments to <code>daspk</code> specify the initial
condition of the states and their derivatives, and the fourth argument
specifies a vector of output times at which the solution is desired,
including the time corresponding to the initial condition.

        <p>The set of initial states and derivatives are not strictly required to
be consistent.  If they are not consistent, you must use the
<code>daspk_options</code> function to provide additional information so
that <code>daspk</code> can compute a consistent starting point.

        <p>The fifth argument is optional, and may be used to specify a set of
times that the DAE solver should not integrate past.  It is useful for
avoiding difficulties with singularities and points where there is a
discontinuity in the derivative.

        <p>After a successful computation, the value of <var>istate</var> will be
greater than zero (consistent with the Fortran version of <span class="sc">Daspk</span>).

        <p>If the computation is not successful, the value of <var>istate</var> will be
less than zero and <var>msg</var> will contain additional information.

        <p>You can use the function <code>daspk_options</code> to set optional
parameters for <code>daspk</code>. 
<!-- Texinfo @sp should work but in practice produces ugly results for HTML. -->
<!-- A simple blank line produces the correct behavior. -->
<!-- @sp 1 -->

     <p class="noindent"><strong>See also:</strong> <a href="doc_002ddassl.html#doc_002ddassl">dassl</a>. 
</p></blockquote></div>

<!-- ./DLD-FUNCTIONS/daspk.cc -->
   <p><a name="doc_002ddaspk_005foptions"></a>

<div class="defun">
&mdash; Loadable Function:  <b>daspk_options</b> (<var>opt, val</var>)<var><a name="index-daspk_005foptions-1790"></a></var><br>
<blockquote><p>When called with two arguments, this function
allows you set options parameters for the function <code>daspk</code>. 
Given one argument, <code>daspk_options</code> returns the value of the
corresponding option.  If no arguments are supplied, the names of all
the available options and their current values are displayed.

        <p>Options include

          <dl>
<dt><code>"absolute tolerance"</code><dd>Absolute tolerance.  May be either vector or scalar.  If a vector, it
must match the dimension of the state vector, and the relative
tolerance must also be a vector of the same length. 
<br><dt><code>"relative tolerance"</code><dd>Relative tolerance.  May be either vector or scalar.  If a vector, it
must match the dimension of the state vector, and the absolute
tolerance must also be a vector of the same length.

          <p>The local error test applied at each integration step is

          <pre class="example">                 abs (local error in x(i))
                      &lt;= rtol(i) * abs (Y(i)) + atol(i)
</pre>
          <br><dt><code>"compute consistent initial condition"</code><dd>Denoting the differential variables in the state vector by &lsquo;<samp><span class="samp">Y_d</span></samp>&rsquo;
and the algebraic variables by &lsquo;<samp><span class="samp">Y_a</span></samp>&rsquo;, <code>ddaspk</code> can solve
one of two initialization problems:

               <ol type=1 start=1>
<li>Given Y_d, calculate Y_a and Y'_d
<li>Given Y', calculate Y.
               </ol>

          <p>In either case, initial values for the given components are input, and
initial guesses for the unknown components must also be provided as
input.  Set this option to 1 to solve the first problem, or 2 to solve
the second (the default is 0, so you must provide a set of
initial conditions that are consistent).

          <p>If this option is set to a nonzero value, you must also set the
<code>"algebraic variables"</code> option to declare which variables in the
problem are algebraic. 
<br><dt><code>"use initial condition heuristics"</code><dd>Set to a nonzero value to use the initial condition heuristics options
described below. 
<br><dt><code>"initial condition heuristics"</code><dd>A vector of the following parameters that can be used to control the
initial condition calculation.

               <dl>
<dt><code>MXNIT</code><dd>Maximum number of Newton iterations (default is 5). 
<br><dt><code>MXNJ</code><dd>Maximum number of Jacobian evaluations (default is 6). 
<br><dt><code>MXNH</code><dd>Maximum number of values of the artificial stepsize parameter to be
tried if the <code>"compute consistent initial condition"</code> option has
been set to 1 (default is 5).

               <p>Note that the maximum total number of Newton iterations allowed is
<code>MXNIT*MXNJ*MXNH</code> if the <code>"compute consistent initial
condition"</code> option has been set to 1 and <code>MXNIT*MXNJ</code> if it is
set to 2. 
<br><dt><code>LSOFF</code><dd>Set to a nonzero value to disable the linesearch algorithm (default is
0). 
<br><dt><code>STPTOL</code><dd>Minimum scaled step in linesearch algorithm (default is eps^(2/3)). 
<br><dt><code>EPINIT</code><dd>Swing factor in the Newton iteration convergence test.  The test is
applied to the residual vector, premultiplied by the approximate
Jacobian.  For convergence, the weighted RMS norm of this vector
(scaled by the error weights) must be less than <code>EPINIT*EPCON</code>,
where <code>EPCON</code> = 0.33 is the analogous test constant used in the
time steps.  The default is <code>EPINIT</code> = 0.01. 
</dl>
          <br><dt><code>"print initial condition info"</code><dd>Set this option to a nonzero value to display detailed information
about the initial condition calculation (default is 0). 
<br><dt><code>"exclude algebraic variables from error test"</code><dd>Set to a nonzero value to exclude algebraic variables from the error
test.  You must also set the <code>"algebraic variables"</code> option to
declare which variables in the problem are algebraic (default is 0). 
<br><dt><code>"algebraic variables"</code><dd>A vector of the same length as the state vector.  A nonzero element
indicates that the corresponding element of the state vector is an
algebraic variable (i.e., its derivative does not appear explicitly
in the equation set.

          <p>This option is required by the
<code>compute consistent initial condition"</code> and
<code>"exclude algebraic variables from error test"</code> options. 
<br><dt><code>"enforce inequality constraints"</code><dd>Set to one of the following values to enforce the inequality
constraints specified by the <code>"inequality constraint types"</code>
option (default is 0).

               <ol type=1 start=1>
<li>To have constraint checking only in the initial condition calculation. 
<li>To enforce constraint checking during the integration. 
<li>To enforce both options 1 and 2.
               </ol>
<br><dt><code>"inequality constraint types"</code><dd>A vector of the same length as the state specifying the type of
inequality constraint.  Each element of the vector corresponds to an
element of the state and should be assigned one of the following
codes

               <dl>
<dt>-2<dd>Less than zero. 
<br><dt>-1<dd>Less than or equal to zero. 
<br><dt>0<dd>Not constrained. 
<br><dt>1<dd>Greater than or equal to zero. 
<br><dt>2<dd>Greater than zero. 
</dl>

          <p>This option only has an effect if the
<code>"enforce inequality constraints"</code> option is nonzero. 
<br><dt><code>"initial step size"</code><dd>Differential-algebraic problems may occasionally suffer from severe
scaling difficulties on the first step.  If you know a great deal
about the scaling of your problem, you can help to alleviate this
problem by specifying an initial stepsize (default is computed
automatically). 
<br><dt><code>"maximum order"</code><dd>Restrict the maximum order of the solution method.  This option must
be between 1 and 5, inclusive (default is 5). 
<br><dt><code>"maximum step size"</code><dd>Setting the maximum stepsize will avoid passing over very large
regions (default is not specified). 
</dl>
        </p></blockquote></div>

   <p>Octave also includes <span class="sc">Dassl</span>, an earlier version of <var>Daspk</var>,
and <var>dasrt</var>, which can be used to solve DAEs with constraints
(stopping conditions).

<!-- ./DLD-FUNCTIONS/dassl.cc -->
   <p><a name="doc_002ddassl"></a>

<div class="defun">
&mdash; Loadable Function: [<var>x</var>, <var>xdot</var>, <var>istate</var>, <var>msg</var>] = <b>dassl</b> (<var>fcn, x_0, xdot_0, t, t_crit</var>)<var><a name="index-dassl-1791"></a></var><br>
<blockquote><p>Solve the set of differential-algebraic equations

     <pre class="example">          0 = f (x, xdot, t)
</pre>
        <p class="noindent">with

     <pre class="example">          x(t_0) = x_0, xdot(t_0) = xdot_0
</pre>
        <p>The solution is returned in the matrices <var>x</var> and <var>xdot</var>,
with each row in the result matrices corresponding to one of the
elements in the vector <var>t</var>.  The first element of <var>t</var>
should be t_0 and correspond to the initial state of the
system <var>x_0</var> and its derivative <var>xdot_0</var>, so that the first
row of the output <var>x</var> is <var>x_0</var> and the first row
of the output <var>xdot</var> is <var>xdot_0</var>.

        <p>The first argument, <var>fcn</var>, is a string, inline, or function handle
that names the function f to call to compute the vector of
residuals for the set of equations.  It must have the form

     <pre class="example">          <var>res</var> = f (<var>x</var>, <var>xdot</var>, <var>t</var>)
</pre>
        <p class="noindent">in which <var>x</var>, <var>xdot</var>, and <var>res</var> are vectors, and <var>t</var> is a
scalar.

        <p>If <var>fcn</var> is a two-element string array or a two-element cell array
of strings, inline functions, or function handles, the first element names
the function f described above, and the second element names a
function to compute the modified Jacobian

     <pre class="example">                df       df
          jac = -- + c ------
                dx     d xdot
</pre>
        <p>The modified Jacobian function must have the form

     <pre class="example">          
          <var>jac</var> = j (<var>x</var>, <var>xdot</var>, <var>t</var>, <var>c</var>)
</pre>
        <p>The second and third arguments to <code>dassl</code> specify the initial
condition of the states and their derivatives, and the fourth argument
specifies a vector of output times at which the solution is desired,
including the time corresponding to the initial condition.

        <p>The set of initial states and derivatives are not strictly required to
be consistent.  In practice, however, <span class="sc">Dassl</span> is not very good at
determining a consistent set for you, so it is best if you ensure that
the initial values result in the function evaluating to zero.

        <p>The fifth argument is optional, and may be used to specify a set of
times that the DAE solver should not integrate past.  It is useful for
avoiding difficulties with singularities and points where there is a
discontinuity in the derivative.

        <p>After a successful computation, the value of <var>istate</var> will be
greater than zero (consistent with the Fortran version of <span class="sc">Dassl</span>).

        <p>If the computation is not successful, the value of <var>istate</var> will be
less than zero and <var>msg</var> will contain additional information.

        <p>You can use the function <code>dassl_options</code> to set optional
parameters for <code>dassl</code>. 
<!-- Texinfo @sp should work but in practice produces ugly results for HTML. -->
<!-- A simple blank line produces the correct behavior. -->
<!-- @sp 1 -->

     <p class="noindent"><strong>See also:</strong> <a href="doc_002ddaspk.html#doc_002ddaspk">daspk</a>, <a href="doc_002ddasrt.html#doc_002ddasrt">dasrt</a>, <a href="doc_002dlsode.html#doc_002dlsode">lsode</a>. 
</p></blockquote></div>

<!-- ./DLD-FUNCTIONS/dassl.cc -->
   <p><a name="doc_002ddassl_005foptions"></a>

<div class="defun">
&mdash; Loadable Function:  <b>dassl_options</b> (<var>opt, val</var>)<var><a name="index-dassl_005foptions-1792"></a></var><br>
<blockquote><p>When called with two arguments, this function
allows you set options parameters for the function <code>dassl</code>. 
Given one argument, <code>dassl_options</code> returns the value of the
corresponding option.  If no arguments are supplied, the names of all
the available options and their current values are displayed.

        <p>Options include

          <dl>
<dt><code>"absolute tolerance"</code><dd>Absolute tolerance.  May be either vector or scalar.  If a vector, it
must match the dimension of the state vector, and the relative
tolerance must also be a vector of the same length. 
<br><dt><code>"relative tolerance"</code><dd>Relative tolerance.  May be either vector or scalar.  If a vector, it
must match the dimension of the state vector, and the absolute
tolerance must also be a vector of the same length.

          <p>The local error test applied at each integration step is

          <pre class="example">                 abs (local error in x(i))
                      &lt;= rtol(i) * abs (Y(i)) + atol(i)
</pre>
          <br><dt><code>"compute consistent initial condition"</code><dd>If nonzero, <code>dassl</code> will attempt to compute a consistent set of initial
conditions.  This is generally not reliable, so it is best to provide
a consistent set and leave this option set to zero. 
<br><dt><code>"enforce nonnegativity constraints"</code><dd>If you know that the solutions to your equations will always be
nonnegative, it may help to set this parameter to a nonzero
value.  However, it is probably best to try leaving this option set to
zero first, and only setting it to a nonzero value if that doesn't
work very well. 
<br><dt><code>"initial step size"</code><dd>Differential-algebraic problems may occasionally suffer from severe
scaling difficulties on the first step.  If you know a great deal
about the scaling of your problem, you can help to alleviate this
problem by specifying an initial stepsize. 
<br><dt><code>"maximum order"</code><dd>Restrict the maximum order of the solution method.  This option must
be between 1 and 5, inclusive. 
<br><dt><code>"maximum step size"</code><dd>Setting the maximum stepsize will avoid passing over very large
regions  (default is not specified). 
<br><dt><code>"step limit"</code><dd>Maximum number of integration steps to attempt on a single call to the
underlying Fortran code. 
</dl>
        </p></blockquote></div>

<!-- ./DLD-FUNCTIONS/dasrt.cc -->
   <p><a name="doc_002ddasrt"></a>

<div class="defun">
&mdash; Loadable Function: [<var>x</var>, <var>xdot</var>, <var>t_out</var>, <var>istat</var>, <var>msg</var>] = <b>dasrt</b> (<var>fcn </var>[<var>, g</var>]<var>, x_0, xdot_0, t </var>[<var>, t_crit</var>])<var><a name="index-dasrt-1793"></a></var><br>
<blockquote><p>Solve the set of differential-algebraic equations

     <pre class="example">          0 = f (x, xdot, t)
</pre>
        <p>with

     <pre class="example">          x(t_0) = x_0, xdot(t_0) = xdot_0
</pre>
        <p>with functional stopping criteria (root solving).

        <p>The solution is returned in the matrices <var>x</var> and <var>xdot</var>,
with each row in the result matrices corresponding to one of the
elements in the vector <var>t_out</var>.  The first element of <var>t</var>
should be t_0 and correspond to the initial state of the
system <var>x_0</var> and its derivative <var>xdot_0</var>, so that the first
row of the output <var>x</var> is <var>x_0</var> and the first row
of the output <var>xdot</var> is <var>xdot_0</var>.

        <p>The vector <var>t</var> provides an upper limit on the length of the
integration.  If the stopping condition is met, the vector
<var>t_out</var> will be shorter than <var>t</var>, and the final element of
<var>t_out</var> will be the point at which the stopping condition was met,
and may not correspond to any element of the vector <var>t</var>.

        <p>The first argument, <var>fcn</var>, is a string, inline, or function handle
that names the function f to call to compute the vector of
residuals for the set of equations.  It must have the form

     <pre class="example">          <var>res</var> = f (<var>x</var>, <var>xdot</var>, <var>t</var>)
</pre>
        <p class="noindent">in which <var>x</var>, <var>xdot</var>, and <var>res</var> are vectors, and <var>t</var> is a
scalar.

        <p>If <var>fcn</var> is a two-element string array or a two-element cell array
of strings, inline functions, or function handles, the first element names
the function f described above, and the second element names a
function to compute the modified Jacobian

     <pre class="example">                df       df
          jac = -- + c ------
                dx     d xdot
</pre>
        <p>The modified Jacobian function must have the form

     <pre class="example">          
          <var>jac</var> = j (<var>x</var>, <var>xdot</var>, <var>t</var>, <var>c</var>)
</pre>
        <p>The optional second argument names a function that defines the
constraint functions whose roots are desired during the integration. 
This function must have the form

     <pre class="example">          <var>g_out</var> = g (<var>x</var>, <var>t</var>)
</pre>
        <p>and return a vector of the constraint function values. 
If the value of any of the constraint functions changes sign, <span class="sc">Dasrt</span>
will attempt to stop the integration at the point of the sign change.

        <p>If the name of the constraint function is omitted, <code>dasrt</code> solves
the same problem as <code>daspk</code> or <code>dassl</code>.

        <p>Note that because of numerical errors in the constraint functions
due to roundoff and integration error, <span class="sc">Dasrt</span> may return false
roots, or return the same root at two or more nearly equal values of
<var>T</var>.  If such false roots are suspected, the user should consider
smaller error tolerances or higher precision in the evaluation of the
constraint functions.

        <p>If a root of some constraint function defines the end of the problem,
the input to <span class="sc">Dasrt</span> should nevertheless allow integration to a
point slightly past that root, so that <span class="sc">Dasrt</span> can locate the root
by interpolation.

        <p>The third and fourth arguments to <code>dasrt</code> specify the initial
condition of the states and their derivatives, and the fourth argument
specifies a vector of output times at which the solution is desired,
including the time corresponding to the initial condition.

        <p>The set of initial states and derivatives are not strictly required to
be consistent.  In practice, however, <span class="sc">Dassl</span> is not very good at
determining a consistent set for you, so it is best if you ensure that
the initial values result in the function evaluating to zero.

        <p>The sixth argument is optional, and may be used to specify a set of
times that the DAE solver should not integrate past.  It is useful for
avoiding difficulties with singularities and points where there is a
discontinuity in the derivative.

        <p>After a successful computation, the value of <var>istate</var> will be
greater than zero (consistent with the Fortran version of <span class="sc">Dassl</span>).

        <p>If the computation is not successful, the value of <var>istate</var> will be
less than zero and <var>msg</var> will contain additional information.

        <p>You can use the function <code>dasrt_options</code> to set optional
parameters for <code>dasrt</code>. 
<!-- Texinfo @sp should work but in practice produces ugly results for HTML. -->
<!-- A simple blank line produces the correct behavior. -->
<!-- @sp 1 -->

     <p class="noindent"><strong>See also:</strong> <a href="doc_002ddaspk.html#doc_002ddaspk">daspk</a>, <a href="doc_002ddasrt.html#doc_002ddasrt">dasrt</a>, <a href="doc_002dlsode.html#doc_002dlsode">lsode</a>. 
</p></blockquote></div>

<!-- ./DLD-FUNCTIONS/dasrt.cc -->
   <p><a name="doc_002ddasrt_005foptions"></a>

<div class="defun">
&mdash; Loadable Function:  <b>dasrt_options</b> (<var>opt, val</var>)<var><a name="index-dasrt_005foptions-1794"></a></var><br>
<blockquote><p>When called with two arguments, this function
allows you set options parameters for the function <code>dasrt</code>. 
Given one argument, <code>dasrt_options</code> returns the value of the
corresponding option.  If no arguments are supplied, the names of all
the available options and their current values are displayed.

        <p>Options include

          <dl>
<dt><code>"absolute tolerance"</code><dd>Absolute tolerance.  May be either vector or scalar.  If a vector, it
must match the dimension of the state vector, and the relative
tolerance must also be a vector of the same length. 
<br><dt><code>"relative tolerance"</code><dd>Relative tolerance.  May be either vector or scalar.  If a vector, it
must match the dimension of the state vector, and the absolute
tolerance must also be a vector of the same length.

          <p>The local error test applied at each integration step is
          <pre class="example">                 abs (local error in x(i)) &lt;= ...
                     rtol(i) * abs (Y(i)) + atol(i)
</pre>
          <br><dt><code>"initial step size"</code><dd>Differential-algebraic problems may occasionally suffer from severe
scaling difficulties on the first step.  If you know a great deal
about the scaling of your problem, you can help to alleviate this
problem by specifying an initial stepsize. 
<br><dt><code>"maximum order"</code><dd>Restrict the maximum order of the solution method.  This option must
be between 1 and 5, inclusive. 
<br><dt><code>"maximum step size"</code><dd>Setting the maximum stepsize will avoid passing over very large
regions. 
<br><dt><code>"step limit"</code><dd>Maximum number of integration steps to attempt on a single call to the
underlying Fortran code. 
</dl>
        </p></blockquote></div>

   <p>See K. E. Brenan, et al., <cite>Numerical Solution of Initial-Value
Problems in Differential-Algebraic Equations</cite>, North-Holland (1989) for
more information about the implementation of <span class="sc">Dassl</span>.

<!-- DO NOT EDIT!  Generated automatically by munge-texi. -->
<!-- Copyright (C) 1996, 1997, 2007, 2008, 2009 John W. Eaton -->
<!-- This file is part of Octave. -->
<!-- Octave 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; either version 3 of the License, or (at -->
<!-- your option) any later version. -->
<!-- Octave 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 Octave; see the file COPYING.  If not, see -->
<!-- <http://www.gnu.org/licenses/>. -->
   </body></html>