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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 98.1p1 release (March 2nd, 1998)
originally by Nikos Drakos (nikos@cbl.leeds.ac.uk), CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>Parameters</TITLE>
<META NAME="description" CONTENT="Parameters">
<META NAME="keywords" CONTENT="userman">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<LINK REL="STYLESHEET" HREF="userman.css">
<LINK REL="next" HREF="node60.html">
<LINK REL="previous" HREF="node58.html">
<LINK REL="up" HREF="node57.html">
<LINK REL="next" HREF="node60.html">
</HEAD>
<BODY >
<!--Navigation Panel-->
<A NAME="tex2html1274"
HREF="node60.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next"
SRC="/usr/lib/latex2html/icons.gif/next_motif.gif"></A>
<A NAME="tex2html1271"
HREF="node57.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up"
SRC="/usr/lib/latex2html/icons.gif/up_motif.gif"></A>
<A NAME="tex2html1265"
HREF="node58.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous"
SRC="/usr/lib/latex2html/icons.gif/previous_motif.gif"></A>
<A NAME="tex2html1273"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents"
SRC="/usr/lib/latex2html/icons.gif/contents_motif.gif"></A>
<BR>
<B> Next:</B> <A NAME="tex2html1275"
HREF="node60.html">Auxiliary Functions</A>
<B> Up:</B> <A NAME="tex2html1272"
HREF="node57.html">Defining Labels and Initial</A>
<B> Previous:</B> <A NAME="tex2html1266"
HREF="node58.html">Variables</A>
<BR>
<BR>
<!--End of Navigation Panel-->
<H3><A NAME="SECTION00625200000000000000">
Parameters</A>
</H3>
When examining bifurcations of our bouncing ball map, it is useful to graphically
depict (a subset of) the parameter space. Since
<!-- MATH: $0 < \alpha \leq 1$ -->
66#66,
we
choose the interval [0,1] as the default range to display 40#40.
For
17#17,
we choose [0,25] as a default range.
As initial parameter values, we choose
<!-- MATH: $(\alpha, \gamma) = (0.8, 10)$ -->
84#84,
since the dynamics
for these parameter values are fairly interesting.
<P>
To implement these choices, we edit a few more lines in bball_init()
so that the code looks like:
<PRE>
int n_param=2; /* dim of parameter space */
static char *parameter_names[]={"alpha","gamma"}; /* list of param names */
static double parameters[]={0.8,10.}; /* initial parameter values */
static double parameter_min[]={0.,0.}; /* default param min for display */
static double parameter_max[]={1.,25.}; /* default param max for display */
</PRE>
<P>
<BR><HR>
<ADDRESS>
<I>John Lapeyre</I>
<BR><I>1998-09-04</I>
</ADDRESS>
</BODY>
</HTML>
|