<?xml-stylesheet type="text/xsl" href="../styles/pmathml.xsl"?>
<!-- saved from url=(0014)about:internet -->
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:dsi="http://www.w3.org/1999/xlink" xmlns:m="http://www.w3.org/1998/Math/MathML" xml:space="preserve"><head><meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"/><title>E05JGF : NAG Library, Mark 22</title><link rel="stylesheet" href="../styles/libdoc.css" type="text/css"/><script type="text/javascript">
   function showLevel(_levelId){
    var thisLevel = document.getElementById(_levelId);
    var thisplus = document.getElementById( _levelId.concat('plus'));
    var thisminus = document.getElementById( _levelId.concat('minus'));
    if(thisLevel.style.display != "block"){
     thisLevel.style.display = "block";
     thisplus.style.display = "none";
     thisminus.style.display = "inline";
     }
    else{
     thisLevel.style.display = "none";
     thisminus.style.display = "none";
     thisplus.style.display = "inline";
     }
    }
  </script></head><body><hr/><div><a class="rout" href="../../pdf/E05/e05jgf.pdf">E05JGF (PDF version)</a></div><div><a class="chap" href="e05conts.xml">E05 Chapter Contents</a></div><div><a class="chapint" href="e05intro.xml">E05 Chapter Introduction</a></div>
<div><a class="htmltoc" href="../FRONTMATTER/manconts.xml">NAG Library Manual</a></div><hr/><h1 class="libdoc">NAG Library Routine Document<br/><br/>E05JGF</h1><div class="paramtext"><div class="header"><b>Note:</b>&#160; before using this routine, please read the Users' Note for your implementation to check the interpretation of <span class="bitalic">bold italicised</span> terms and other implementation-dependent details.</div></div> 
<div class="htmltoc">
<h2 class="htmltoc"><span class="htmltochead" onclick="showLevel('htmltoc');"><span class="htmltocplus" id="htmltocplus">+</span><span class="htmltocminus" id="htmltocminus">&#8722;</span></span>&#160;Contents</h2>
<div class="htmltocitem" id="htmltoc">
<div class="htmltoc">
<span class="htmltocplus">&#160;&#160;&#160;</span>
<a class="htmltoc" href="#purpose">1&#160;&#160;<b>Purpose</b></a>
</div><div class="htmltoc">
<span class="htmltocplus">&#160;&#160;&#160;</span>
<a class="htmltoc" href="#specification">2&#160;&#160;<b>Specification</b></a>
</div><div class="htmltoc">
<span class="htmltocplus">&#160;&#160;&#160;</span>
<a class="htmltoc" href="#description">3&#160;&#160;<b>Description</b></a>
</div><div class="htmltoc">
<span class="htmltocplus">&#160;&#160;&#160;</span>
<a class="htmltoc" href="#references">4&#160;&#160;<b>References</b></a>
</div><div class="htmltoc">
<span class="htmltocplus">&#160;&#160;&#160;</span>
<a class="htmltoc" href="#parameters">5&#160;&#160;<b>Parameters</b></a>
</div><div class="htmltoc">
<span class="htmltocplus">&#160;&#160;&#160;</span>
<a class="htmltoc" href="#errors">6&#160;&#160;<b>Error Indicators and Warnings</b></a>
</div><div class="htmltoc">
<span class="htmltocplus">&#160;&#160;&#160;</span>
<a class="htmltoc" href="#accuracy">7&#160;&#160;<b>Accuracy</b></a>
</div><div class="htmltoc">
<span class="htmltocplus">&#160;&#160;&#160;</span>
<a class="htmltoc" href="#fcomments">8&#160;&#160;<b>Further Comments</b></a>
</div><div class="htmltoc">
<span class="htmltocplus">&#160;&#160;&#160;</span>
<a class="htmltoc" href="#example">9&#160;&#160;<b>Example</b></a>
</div>
</div>
</div><h2 class="standard"><a class="sec" name="purpose" id="purpose"/>1&#160;&#160;Purpose</h2>
<div class="paramtext">E05JGF may be used to supply individual real optional parameters to <a class="rout" href="../E05/e05jbf.xml">E05JBF</a>.  The initialization routine <a class="rout" href="../E05/e05jaf.xml">E05JAF</a> <b>must</b> have been called before calling E05JGF.</div><h2 class="standard"><a class="sec" name="specification" id="specification"/>2&#160;&#160;Specification</h2>
<table class="fspec"><tr><td class="tdfspec1">SUBROUTINE&#160;E05JGF&#160;(</td><td class="tdfspec2"><a class="arg" href="#OPTSTR">OPTSTR</a>, <a class="arg" href="#RVALUE">RVALUE</a>, <a class="arg" href="#COMM">COMM</a>, <a class="arg" href="#LCOMM">LCOMM</a>, <a class="arg" href="#IFAIL">IFAIL</a>)</td></tr><tr><td class="tdfspec1">INTEGER</td><td class="tdfspec2">LCOMM, IFAIL</td></tr><tr><td class="tdfspec1"><b><i>double&#160;precision</i></b></td><td class="tdfspec2">RVALUE, COMM(LCOMM)</td></tr><tr><td class="tdfspec1">CHARACTER*(*)</td><td class="tdfspec2">OPTSTR</td></tr></table><h2 class="standard"><a class="sec" name="description" id="description"/>3&#160;&#160;Description</h2>
<div class="paramtext">E05JGF may be used to supply values for real optional parameters to

<a class="rout" href="../E05/e05jbf.xml">E05JBF</a>.  It is only necessary to call E05JGF for those parameters whose values are to be different from their default values.  One call to E05JGF sets one parameter value.</div><div class="paramtext">Each real optional parameter is defined by a single character string in <a class="arg" href="#OPTSTR">OPTSTR</a> and the corresponding value in <a class="arg" href="#RVALUE">RVALUE</a>.  For example the following illustrates how the local searches tolerance could be defined:
<pre class="verbatim">
LOCTOL = 1.0D-10
CALL E05JGF ('Local Searches Tolerance', LOCTOL, COMM, LCOMM, IFAIL)
</pre></div><div class="paramtext">A complete list of optional parameters, their symbolic names and default values is given in <a class="sec" href="../E05/e05jbf.xml#optparams">Section 11</a> in E05JBF.</div><h2 class="standard"><a class="sec" name="references" id="references"/>4&#160;&#160;References</h2>
<div class="paramtext">None.</div><h2 class="standard"><a class="sec" name="parameters" id="parameters"/>5&#160;&#160;Parameters</h2>
<dl><dt class="paramhead"><a name="OPTSTR" id="OPTSTR"/>1: &#160;&#160;&#8194; OPTSTR &#8211; CHARACTER*(*)<span class="pclass">Input</span></dt><dd><div class="paramtext"><i>On entry</i>: a string identifying a real-valued optional parameter (as described in <a class="sec" href="../E05/e05jbf.xml#optparams">Section 11</a> in E05JBF).</div></dd><dt class="paramhead"><a name="RVALUE" id="RVALUE"/>2: &#160;&#160;&#8194; RVALUE &#8211; <span class="bitalic">double precision</span><span class="pclass">Input</span></dt><dd><div class="paramtext"><i>On entry</i>: the value associated with the optional parameter in <a class="arg" href="#OPTSTR">OPTSTR</a>.</div></dd><dt class="paramhead"><a name="COMM" id="COMM"/>3: &#160;&#160;&#8194; COMM(<a class="arg" href="#LCOMM">LCOMM</a>) &#8211; <span class="bitalic">double precision</span> array<span class="pclass">Communication Array</span></dt><dd><div class="paramtext"><i>On exit</i>: <a class="arg" href="#COMM">COMM</a> <b>must not</b> be altered between calls to any of the routines <a class="rout" href="../E05/e05jbf.xml">E05JBF</a>, <a class="rout" href="../E05/e05jcf.xml">E05JCF</a>, <a class="rout" href="../E05/e05jdf.xml">E05JDF</a>, <a class="rout" href="../E05/e05jef.xml">E05JEF</a>, <a class="rout" href="../E05/e05jff.xml">E05JFF</a>, E05JGF, <a class="rout" href="../E05/e05jhf.xml">E05JHF</a>, <a class="rout" href="../E05/e05jjf.xml">E05JJF</a>, <a class="rout" href="../E05/e05jkf.xml">E05JKF</a> and <a class="rout" href="../E05/e05jlf.xml">E05JLF</a>.</div></dd><dt class="paramhead"><a name="LCOMM" id="LCOMM"/>4: &#160;&#160;&#8194; LCOMM &#8211; INTEGER<span class="pclass">Input</span></dt><dd><div class="paramtext"><i>On entry</i>: the dimension of the array <a class="arg" href="#COMM">COMM</a> as declared in the (sub)program from which E05JGF is called.
</div><div class="paramtext"><i>Constraint</i>:
  <m:math><m:maction actiontype="link" dsi:type="simple" dsi:href="#LCOMM"><m:mi mathcolor="#EE0000" mathvariant="bold">LCOMM</m:mi></m:maction><m:mo>&#8805;</m:mo><m:mn>100</m:mn></m:math>.
</div></dd><dt class="paramhead"><a name="IFAIL" id="IFAIL"/>5: &#160;&#160;&#8194; IFAIL &#8211; INTEGER<span class="pclass">Input/Output</span></dt><dd>
<div class="paramtext"><i>On entry</i>: <a class="arg" href="#IFAIL">IFAIL</a> must be set to <m:math><m:mn>0</m:mn></m:math>, <m:math><m:mrow><m:mo>-</m:mo><m:mn>1</m:mn></m:mrow><m:mtext>&#8203; or &#8203;</m:mtext><m:mn>1</m:mn></m:math>. If you are unfamiliar with this parameter you should refer to <a class="sec" href="../GENINT/essint.xml#library3">Section 3.3</a> in  the Essential Introduction for details.</div>
<div class="paramtext"><i>On exit</i>: <m:math><m:maction actiontype="link" dsi:type="simple" dsi:href="#IFAIL"><m:mi mathcolor="#EE0000" mathvariant="bold">IFAIL</m:mi></m:maction><m:mo>=</m:mo><m:maction actiontype="link" dsi:type="simple" dsi:href="#errors"><m:mn mathcolor="#003399" mathvariant="bold">0</m:mn></m:maction></m:math>&#160;unless the routine detects an error (see <a class="sec" href="#errors">Section 6</a>). <div class="paramtext">For environments where it might be inappropriate to halt program execution when an error is detected, the value <m:math><m:mrow><m:mo>-</m:mo><m:mn>1</m:mn></m:mrow><m:mtext>&#8203; or &#8203;</m:mtext><m:mn>1</m:mn></m:math>&#160;is recommended.  If the output of error messages is undesirable, then the value <m:math><m:mn>1</m:mn></m:math>&#160;is recommended.  Otherwise, if you are not familiar with this parameter, the recommended value is <m:math><m:mn>0</m:mn></m:math>.  <b>When the value <m:math><m:mrow><m:mo>-</m:mo><m:mn mathvariant="bold">1</m:mn></m:mrow><m:mtext>&#8203; or &#8203;</m:mtext><m:mn mathvariant="bold">1</m:mn></m:math>&#160;is used it is essential to test the value of <a class="arg" href="#IFAIL">IFAIL</a> on exit.</b></div></div></dd></dl><h2 class="standard"><a class="sec" name="errors" id="errors"/>6&#160;&#160;Error Indicators and Warnings</h2>
<div class="paramtext">If on entry <m:math><m:maction actiontype="link" dsi:type="simple" dsi:href="#IFAIL"><m:mi mathcolor="#EE0000" mathvariant="bold">IFAIL</m:mi></m:maction><m:mo>=</m:mo><m:maction actiontype="link" dsi:type="simple" dsi:href="#errors"><m:mn mathcolor="#003399" mathvariant="bold">0</m:mn></m:maction></m:math>&#160;or <m:math><m:maction actiontype="link" dsi:type="simple" dsi:href="#errors"><m:mn mathcolor="#003399" mathvariant="bold">-1</m:mn></m:maction></m:math>, explanatory error messages are output on the current error message unit (as defined by <a class="rout" href="../X04/x04aaf.xml">X04AAF</a>).</div><div class="paramtext">Errors or warnings detected by the routine:</div>
<dl class="ifail">
<dt class="errorhead"><a name="IFeq1" id="IFeq1"/><m:math><m:maction actiontype="link" dsi:type="simple" dsi:href="#IFAIL"><m:mi mathcolor="#EE0000" mathvariant="bold">IFAIL</m:mi></m:maction><m:mo>=</m:mo><m:mn>1</m:mn></m:math></dt>
<dd>
<table class="ifail"><tr><td class="ifail1">On&#160;entry,</td><td class="ifail2-90"><m:math><m:maction actiontype="link" dsi:type="simple" dsi:href="#LCOMM"><m:mi mathcolor="#EE0000" mathvariant="bold">LCOMM</m:mi></m:maction><m:mo>&lt;</m:mo><m:mn>100</m:mn></m:math>,</td></tr><tr><td class="ifail1">or</td><td class="ifail2-90">the initialization routine <a class="rout" href="../E05/e05jaf.xml">E05JAF</a> has not been called.</td></tr></table>
</dd>
</dl>
<dl class="ifail">
<dt class="errorhead"><a name="IFeq2" id="IFeq2"/><m:math><m:maction actiontype="link" dsi:type="simple" dsi:href="#IFAIL"><m:mi mathcolor="#EE0000" mathvariant="bold">IFAIL</m:mi></m:maction><m:mo>=</m:mo><m:mn>2</m:mn></m:math></dt>
<dd>
<div class="paramtext">The optional parameter given in <a class="arg" href="#OPTSTR">OPTSTR</a> is invalid.  The correct number of word &#8216;tokens&#8217; are present but a keyword or keyword combination is invalid.</div>
</dd>
</dl>
<dl class="ifail">
<dt class="errorhead"><a name="IFeq3" id="IFeq3"/><m:math><m:maction actiontype="link" dsi:type="simple" dsi:href="#IFAIL"><m:mi mathcolor="#EE0000" mathvariant="bold">IFAIL</m:mi></m:maction><m:mo>=</m:mo><m:mn>3</m:mn></m:math></dt>
<dd>
<div class="paramtext">The numerical value to be set is out of range with respect to optional parameter given in <a class="arg" href="#OPTSTR">OPTSTR</a>.  See <a class="sec" href="../E05/e05jbf.xml#optparams">Section 11</a> in E05JBF for allowable values of the optional parameters.</div>
</dd>
</dl>
<dl class="ifail">
<dt class="errorhead"><a name="IFeq4" id="IFeq4"/><m:math><m:maction actiontype="link" dsi:type="simple" dsi:href="#IFAIL"><m:mi mathcolor="#EE0000" mathvariant="bold">IFAIL</m:mi></m:maction><m:mo>=</m:mo><m:mn>4</m:mn></m:math></dt>
<dd>
<div class="paramtext">The optional-parameter name contained the wrong number of word &#8216;tokens&#8217;, so could not be recognized by the routine.</div>
</dd>
</dl><h2 class="standard"><a class="sec" name="accuracy" id="accuracy"/>7&#160;&#160;Accuracy</h2>
<div class="paramtext">Not applicable.</div><h2 class="standard"><a class="sec" name="fcomments" id="fcomments"/>8&#160;&#160;Further Comments</h2>
<div class="paramtext"><a class="rout" href="../E05/e05jcf.xml">E05JCF</a> or <a class="rout" href="../E05/e05jdf.xml">E05JDF</a> may also be used to supply real optional parameters to

<a class="rout" href="../E05/e05jbf.xml">E05JBF</a>.</div><h2 class="standard"><a class="sec" name="example" id="example"/>9&#160;&#160;Example</h2>
<div class="paramtext">See <a class="sec" href="../E05/e05jcf.xml#example">Section 9</a> in E05JCF.</div>
<hr/><div><a class="rout" href="../../pdf/E05/e05jgf.pdf">E05JGF (PDF version)</a></div><div><a class="chap" href="e05conts.xml">E05 Chapter Contents</a></div><div><a class="chapint" href="e05intro.xml">E05 Chapter Introduction</a></div>
<div><a class="htmltoc" href="../FRONTMATTER/manconts.xml">NAG Library Manual</a></div>
<div><hr/><a class="genint" href="../FRONTMATTER/copyright.xml">&#169; The Numerical Algorithms Group Ltd, Oxford, UK. 2009</a></div></body></html>
