Class CorrelationObject
Holds the result of a correlation calcultion between two vectors
Inherited Members
Namespace: TimeSeriesAnalysis
Assembly: TimeSeriesAnalysis.dll
Syntax
public class CorrelationObject
Constructors
| Edit this page View SourceCorrelationObject(string, double, double?, double?)
Constructor
Declaration
public CorrelationObject(string name, double value, double? timeConstant_s = null, double? timeDelay_s = null)
Parameters
Type | Name | Description |
---|---|---|
string | name | |
double | value | |
double? | timeConstant_s | |
double? | timeDelay_s |
Fields
| Edit this page View SourcecorrelationFactor
a correlation factor betweeen -1 and 1 indicating the degree of correlation
Declaration
public double correlationFactor
Field Value
Type | Description |
---|---|
double |
signalName
Name of the signal
Declaration
public string signalName
Field Value
Type | Description |
---|---|
string |
timeConstant_s
Time constant (1. order) between the two vectors
Declaration
public double? timeConstant_s
Field Value
Type | Description |
---|---|
double? |
timeDelay_s
Time delay in seconds between the two vectors
Declaration
public double? timeDelay_s
Field Value
Type | Description |
---|---|
double? |