Calculate linear line parameters for this curve between two indexes y = offset + slope * x

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

Syntax

C#
public void LLS(
	int from,
	int t,
	out float offset,
	out float slope,
	out float CorrCoef
)
Visual Basic (Declaration)
Public Sub LLS ( _
	from As Integer, _
	t As Integer, _
	<OutAttribute> ByRef offset As Single, _
	<OutAttribute> ByRef slope As Single, _
	<OutAttribute> ByRef CorrCoef As Single _
)
Visual C++
public:
void LLS(
	int from, 
	int t, 
	[OutAttribute] float% offset, 
	[OutAttribute] float% slope, 
	[OutAttribute] float% CorrCoef
)

Parameters

from
Type: System..::.Int32
begin index
t
Type: System..::.Int32
end index
offset
Type: System..::.Single %
offset
slope
Type: System..::.Single %
slope
CorrCoef
Type: System..::.Single %
Correlation Coefficient

See Also