Class series

java.lang.Object
   |
   +----series

public class series
extends Object
This series class is the prototype class for all series


Variable Index

 o n
 o param
 o term
 o val

Method Index

 o first()
Initializes the first term of series.
 o list(int)
Lists the first m terms of series
 o nextTerm()
Advances to the next term of series.
 o valAt(int)
Returns the value of the indexed term in series

Variables

 o param
 protected double param
 o n
 protected int n
 o term
 protected double term
 o val
 protected double val

Methods

 o first
 public void first()
Initializes the first term of series.

 o nextTerm
 public void nextTerm()
Advances to the next term of series.

 o valAt
 public double valAt(int m)
Returns the value of the indexed term in series

 o list
 public void list(int m)
Lists the first m terms of series