Table of Contents

Class CorrelationObject

Namespace
TimeSeriesAnalysis
Assembly
TimeSeriesAnalysis.dll

Holds the result of a correlation calculation between two vectors

public class CorrelationObject
Inheritance
CorrelationObject
Inherited Members

Constructors

CorrelationObject(string, double, double?, double?)

Constructor

public CorrelationObject(string name, double value, double? timeConstant_s = null, double? timeDelay_s = null)

Parameters

name string
value double
timeConstant_s double?
timeDelay_s double?

Fields

correlationFactor

a correlation factor between -1 and 1 indicating the degree of correlation

public double correlationFactor

Field Value

double

signalName

Name of the signal

public string signalName

Field Value

string

timeConstant_s

Time constant (1. order) between the two vectors

public double? timeConstant_s

Field Value

double?

timeDelay_s

Time delay in seconds between the two vectors

public double? timeDelay_s

Field Value

double?