Calculate linear line parameters for this curve y = a + b * x


Namespace: PalmSens
Assembly: PalmSens (in PalmSens.dll)

Syntax

Visual Basic (Declaration)
Public Sub LLS( _ 
   <OutAttribute> ByRef a As Single,  _ 
   <OutAttribute> ByRef b As Single,  _ 
   <OutAttribute> ByRef corr As Single _ 
)
C#
public void LLS(
   out float a,
   out float b,
   out float corr
)
C++
public:
 void LLS(
   [OutAttribute] float% a,
   [OutAttribute] float% b,
   [OutAttribute] float% corr
) sealed 
J#
public void LLS(
   /** @attribute OutAttribute() */ /** @ref */ float a,
   /** @attribute OutAttribute() */ /** @ref */ float b,
   /** @attribute OutAttribute() */ /** @ref */ float corr
)
JScript
public  function LLS(
   OutAttribute a : float,
   OutAttribute b : float,
   OutAttribute corr : float
)

Parameters

a
offset
b
slope
corr
Correlation Coefficient

See Also