Difference between revisions of "Area"

 
(Cleaned up a bit)
Line 1: Line 1:
 
[[Category:Array-reducing functions]]
 
[[Category:Array-reducing functions]]
  
(this page is a stub -- it contains info of new-to-4.0, but needs to be updated/reorganized to be a general reference page)
+
Area(R,I,X1,X2)
 +
Returns the area (sum of trapezoids) under array R across index I between X1 and X2. X1 and X2 are optional.
  
 
= Declaration =
 
= Declaration =
 
  Area( R : Numeric[J] ; I : ascending Numeric[J] ; X1,X2 : opt numeric atomic ; J : opt hidden IndexType = I )
 
  Area( R : Numeric[J] ; I : ascending Numeric[J] ; X1,X2 : opt numeric atomic ; J : opt hidden IndexType = I )
  
With J not specified, I can be an index with numeric ascending values, or it can be a self-indexed array with arbitrary index values but with numeric ascending values along Self.
+
= Simplest Usage =
  
The J parameter also makes it possible to have an arbitrary X array:
+
In the simple usage, the second parameter, I, is an index with increasing numeric values, and R is indexed by I. You can visualize R as a function of I, and Area returns the area under the curve obtained when I is plotted on the X-axis and R on the Y-axis.
  Area( Y, X, J: In1)
 
  
where X and Y are arrays indexed by J (X must be ascending along J).
+
= Using an array for I =
 +
 
 +
(new to 4.0).
 +
When your X-axis values are in an array, e.g., X and Y are both arrays indexed by In1, you can use:
 +
Area( Y,X,X1,X2,In1 )
 +
 
 +
Here the x-axis values are taken from the X-array rather than from the index.  If X1 and X2 are omitted, you can write
 +
Area( R:Y,I:X,J:In1 )
 +
or equivalently
 +
Area( Y,X, J:In1 )
 +
 
 +
When using an array of values for the X-axis, the index, J, may contain arbitrary values, but X must contain values that are in ascending order.
 +
 
 +
If X is a self-indexed array, and Y is indexed by X, and the J parameter is omitted, then the values of X are used and the self-index of X is used.
 +
 
 +
= Details =
  
 
Some notes: J is hidden from the user, since the main concern was fixing several bugs with the function while maintaining backward compatibility.  However, as the above example shows, it can be useful.  The second parameter is named I for legacy reasons, but it would be better named X with the J parameter named I.  Consider this change when updating manuals.
 
Some notes: J is hidden from the user, since the main concern was fixing several bugs with the function while maintaining backward compatibility.  However, as the above example shows, it can be useful.  The second parameter is named I for legacy reasons, but it would be better named X with the J parameter named I.  Consider this change when updating manuals.

Revision as of 23:40, 1 February 2007


Area(R,I,X1,X2)

Returns the area (sum of trapezoids) under array R across index I between X1 and X2. X1 and X2 are optional.

Declaration

Area( R : Numeric[J] ; I : ascending Numeric[J] ; X1,X2 : opt numeric atomic ; J : opt hidden IndexType = I )

Simplest Usage

In the simple usage, the second parameter, I, is an index with increasing numeric values, and R is indexed by I. You can visualize R as a function of I, and Area returns the area under the curve obtained when I is plotted on the X-axis and R on the Y-axis.

Using an array for I

(new to 4.0). When your X-axis values are in an array, e.g., X and Y are both arrays indexed by In1, you can use:

Area( Y,X,X1,X2,In1 )

Here the x-axis values are taken from the X-array rather than from the index. If X1 and X2 are omitted, you can write

Area( R:Y,I:X,J:In1 )

or equivalently

Area( Y,X, J:In1 )

When using an array of values for the X-axis, the index, J, may contain arbitrary values, but X must contain values that are in ascending order.

If X is a self-indexed array, and Y is indexed by X, and the J parameter is omitted, then the values of X are used and the self-index of X is used.

Details

Some notes: J is hidden from the user, since the main concern was fixing several bugs with the function while maintaining backward compatibility. However, as the above example shows, it can be useful. The second parameter is named I for legacy reasons, but it would be better named X with the J parameter named I. Consider this change when updating manuals.

Another difference relative to 3.1 is that X2 (upper bound) can be specified while not specifying X1 (lower bound). So, for example, you could find the area up to a given point, e.g.:

var dens := Pdf(Ch1);
Area( dens, dens.Step, X2:x )
Comments


You are not allowed to post comments.