Syntax

expression.LogEst(Arg1, Arg2, Arg3, Arg4)

expression A variable that represents a WorksheetFunction object.

Parameters

Name Required/Optional Data Type Description
Arg1 Required Variant Known_y's - the set of y-values you already know in the relationship y = b*m^x.
Arg2 Optional Variant Known_x's - an optional set of x-values that you may already know in the relationship y = b*m^x.
Arg3 Optional Variant Const - a logical value specifying whether to force the constant b to equal 1.
Arg4 Optional Variant Stats - a logical value specifying whether to return additional regression statistics.

Return Value
Variant

Remarks

The equation for the curve is:

y = b*m^x or

y = (b*(m1^x1)*(m2^x2)*_) (if there are multiple x-values)

where the dependent y-value is a function of the independent x-values. The m-values are bases corresponding to each exponent x-value, and b is a constant value. Note that y, x, and m can be vectors. The array that LOGEST returns is {mn,mn-1,...,m1,b}.

For more information about additional regression statistics, see LINEST.


See also: