SQBatchEvolutionModel.h
Go to the documentation of this file.
1 /*
2 Copyright (C) Sartorius Stedim Data Analytics AB 2017 -
3 */
4 #ifndef _SQBATCHEVOLUTIONMODEL_H_
5 #define _SQBATCHEVOLUTIONMODEL_H_
6 
7 #include "SQDef.h"
8 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 #ifdef _WIN32
17 #pragma pack(push, 8)
18 #endif
19 
20 
21 #include "SQErrorCodes.h"
22 #include "SQModel.h"
23 
29  typedef enum SQ_LimitEnumType
30  {
34  } SQ_LimitType;
35 
43  SQCEXPORT SQ_ErrorCode SQCDECL SQ_IsBatchEvolutionModel(SQ_Model pModel, SQ_Bool* bIsBEM);
44 
52  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetModelNumberOfBatches(SQ_Model pModel, int *piNrOfBatches);
53 
63  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetModelBatchName(SQ_Model pModel, int iBatchIx, char *szBatchName, int iBufferLength);
64 
73  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetPhaseName(SQ_Model pModel, char *szPhaseName, int iBufferLength);
74 
88  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetBEMLimits(SQ_Model pModel, SQ_LimitType eLimitType, int iCompFrom, int iCompTo, SQ_VectorData* pVectorData);
89 
115  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedContributionsDModX(SQ_Model pModel, float fMaturity, int iBatchIx, const char *szPhaseIteration, SQ_WeightType eWeightType, int iComponent, SQ_ReconstructState bReconstruct, SQ_VectorData* pVectorData);
116 
142  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedContributionsDModXGroup(SQ_Model pModel, SQ_FloatVector* pMaturity, SQ_IntVector* pBatchIx, SQ_StringVector* pPhaseIterations, SQ_WeightType eWeightType, int iComponent, SQ_ReconstructState bReconstruct, SQ_VectorData* pVectorData);
143 
164  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedContributionsDModY(SQ_Model pModel, float fMaturity, int iBatchIx, const char *szPhaseIteration, SQ_WeightType eWeightType, int iComponent, SQ_VectorData* pVectorData);
165 
186  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedContributionsDModYGroup(SQ_Model pModel, SQ_FloatVector* pMaturity, SQ_IntVector* pBatchIx, SQ_StringVector* pPhaseIterations, SQ_WeightType eWeightType, int iComponent, SQ_VectorData* pVectorData);
187 
222  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedContributionsScoreSingleWeight(SQ_Model pModel, float fMaturity1, int iBatchIx1, const char *szPhaseIteration1, float fMaturity2, int iBatchIx2, const char *szPhaseIteration2, SQ_WeightType eWeightType, int iComponent, SQ_ReconstructState bReconstruct, SQ_VectorData* pVectorData);
223 
260  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedContributionsScoreSingleWeightGroup(SQ_Model pModel, SQ_FloatVector* pMaturity1, SQ_IntVector* pBatchIx1, SQ_StringVector* pPhaseIterations1, SQ_FloatVector* pMaturity2, SQ_IntVector* pBatchIx2, SQ_StringVector* pPhaseIterations2, SQ_WeightType eWeightType, int iComponent, SQ_ReconstructState bReconstruct, SQ_VectorData* pVectorData);
261 
290  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedContributionsScoreSingleWeightGroupCombined(SQ_Model pModel, SQ_FloatVector* pMaturity, SQ_IntVector* pBatchIx, SQ_StringVector* pPhaseIterations, SQ_WeightType eWeightType, int iComponent, SQ_ReconstructState bReconstruct, SQ_VectorData* pVectorData);
291 
332  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedContributionsScoreMultiWeight(SQ_Model pModel, float fMaturity1, int iBatchIx1, const char *szPhaseIteration1, float fMaturity2, int iBatchIx2, const char *szPhaseIteration2, SQ_IntVector* pWeightType, SQ_IntVector* pComponents, SQ_ReconstructState bReconstruct, SQ_VectorData* pVectorData);
333 
376  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedContributionsScoreMultiWeightGroup(SQ_Model pModel, SQ_FloatVector* pMaturity1, SQ_IntVector* pBatchIx1, SQ_StringVector* pPhaseIterations1, SQ_FloatVector* pMaturity2, SQ_IntVector* pBatchIx2, SQ_StringVector* pPhaseIterations2, SQ_IntVector* pWeightType, SQ_IntVector* pComponents, SQ_ReconstructState bReconstruct, SQ_VectorData* pVectorData);
390  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedDModX(SQ_Model pModel, int iComponent, SQ_NormalizedState bNormalized, SQ_ModelingPowerWeightedState bModelingPowerWeighted, SQ_IntVector *pBatches, SQ_VectorData* pVectorData);
402  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedDModXAverageBatch(SQ_Model pModel, int iComponent, SQ_NormalizedState bNormalized, SQ_ModelingPowerWeightedState bModelingPowerWeighted, SQ_VectorData* pVectorData);
414  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedDModXStdDevBatch(SQ_Model pModel, int iComponent, SQ_NormalizedState bNormalized, SQ_ModelingPowerWeightedState bModelingPowerWeighted, SQ_VectorData* pVectorData);
426  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedT(SQ_Model pModel, int iComponent, SQ_IntVector *pBatches, SQ_VectorData* pVectorData);
427 
437  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedTAverageBatch(SQ_Model pModel, int iComponent, SQ_VectorData* pVectorData);
447  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedTStdDevBatch(SQ_Model pModel, int iComponent, SQ_VectorData* pVectorData);
448 
460  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedTo(SQ_Model pModel, int iComponent, SQ_IntVector *pBatches, SQ_VectorData* pVectorData);
461 
471  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedToAverageBatch(SQ_Model pModel, int iComponent, SQ_VectorData* pVectorData);
481  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedToStdDevBatch(SQ_Model pModel, int iComponent, SQ_VectorData* pVectorData);
482 
497  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedT2Range(SQ_Model pModel, int iCompFrom, int iCompTo, SQ_IntVector *pBatches, SQ_VectorData* pVectorData);
510  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedT2RangeAverageBatch(SQ_Model pModel, int iCompFrom, int iCompTo, SQ_VectorData* pVectorData);
523  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedT2RangeStdDevBatch(SQ_Model pModel, int iCompFrom, int iCompTo, SQ_VectorData* pVectorData);
544  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedXVar(SQ_Model pModel, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, int iXTerm, SQ_IntVector *pBatches, SQ_VectorData* pVectorData);
562  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedXVarAverageBatch(SQ_Model pModel, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, int iXTerm, SQ_VectorData* pVectorData);
580  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedXVarStdDevBatch(SQ_Model pModel, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, int iXTerm, SQ_VectorData* pVectorData);
600  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedYVar(SQ_Model pModel, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, SQ_IntVector *pBatches, SQ_VectorData* pVectorData);
617  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedYVarAverageBatch(SQ_Model pModel, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, SQ_VectorData* pVectorData);
634  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedYVarStdDevBatch(SQ_Model pModel, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, SQ_VectorData* pVectorData);
644  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedTimeMaturity(SQ_Model pModel, SQ_VectorData* pVectorData);
665  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedYPred(SQ_Model pModel, int iComponent, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, SQ_IntVector *pBatches, SQ_VectorData* pVectorData);
684  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedYPredAverageBatch(SQ_Model pModel, int iComponent, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, SQ_VectorData* pVectorData);
703  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedYPredStdDevBatch(SQ_Model pModel, int iComponent, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, SQ_VectorData* pVectorData);
704  /*****************************************************************************************
705  *
706  * Out of Control
707  *
708  * The following functions are available for a Batch Evolution Model.
709  * These vectors are the Out of Control summary for all of the vectors in the Batch Control charts.
710  *
711  * The Out of Control summary for a given vector, for example scores, t1,
712  * computes for every batch the ratio of the area of the vector outside the sigma limits to the total area inside the limits.
713  * The Out of control summary is then expressed as a percent of the area inside the limits.
714  *
715  * The Out of Control summary for all the vectors, i.e., scores, DModX, T2range and Observed vs predicted,
716  * from both the training set and the prediction set are always computed on aligned vectors.
717  *
718  ******************************************************************************************/
728  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedDModXOOCSum(SQ_Model pModel, int iComponent, float fLimit, SQ_VectorData* pVectorData);
739  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedTOOCSum(SQ_Model pModel, int iComponent, float fHighLimit, float fLowLimit, SQ_VectorData* pVectorData);
751  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedT2RangeOOCSum(SQ_Model pModel, int iCompFrom, int iCompTo, SQ_VectorData* pVectorData);
771  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedXVarOOCSum(SQ_Model pModel, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, int iColumnXIndex, float fHighLimit, float fLowLimit, SQ_VectorData* pVectorData);
791  SQCEXPORT SQ_ErrorCode SQCDECL SQ_GetAlignedYPredOOCSum(SQ_Model pModel, int iComponent, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, float fHighLimit, float fLowLimit, SQ_VectorData* pVectorData);
792 
795 #ifdef _WIN32
796 #pragma pack(pop)
797 #endif
798 
799 #ifdef __cplusplus
800 }
801 #endif /*__cplusplus*/
802 
803 
804 #endif /* _SQBATCHEVOLUTIONMODEL_H_ */
SQ_GetAlignedContributionsDModY
SQ_ErrorCode SQ_GetAlignedContributionsDModY(SQ_Model pModel, float fMaturity, int iBatchIx, const char *szPhaseIteration, SQ_WeightType eWeightType, int iComponent, SQ_VectorData *pVectorData)
SQ_GetAlignedContributionsDModX
SQ_ErrorCode SQ_GetAlignedContributionsDModX(SQ_Model pModel, float fMaturity, int iBatchIx, const char *szPhaseIteration, SQ_WeightType eWeightType, int iComponent, SQ_ReconstructState bReconstruct, SQ_VectorData *pVectorData)
SQ_GetAlignedContributionsScoreMultiWeightGroup
SQ_ErrorCode SQ_GetAlignedContributionsScoreMultiWeightGroup(SQ_Model pModel, SQ_FloatVector *pMaturity1, SQ_IntVector *pBatchIx1, SQ_StringVector *pPhaseIterations1, SQ_FloatVector *pMaturity2, SQ_IntVector *pBatchIx2, SQ_StringVector *pPhaseIterations2, SQ_IntVector *pWeightType, SQ_IntVector *pComponents, SQ_ReconstructState bReconstruct, SQ_VectorData *pVectorData)
SQ_GetAlignedT2RangeAverageBatch
SQ_ErrorCode SQ_GetAlignedT2RangeAverageBatch(SQ_Model pModel, int iCompFrom, int iCompTo, SQ_VectorData *pVectorData)
tagSQ_FloatVector
Definition: SQFloatVector.h:27
SQ_ReconstructState
enum SQ_TriStateReconstructState SQ_ReconstructState
SQ_GetAlignedT2RangeStdDevBatch
SQ_ErrorCode SQ_GetAlignedT2RangeStdDevBatch(SQ_Model pModel, int iCompFrom, int iCompTo, SQ_VectorData *pVectorData)
SQ_GetAlignedContributionsScoreSingleWeightGroup
SQ_ErrorCode SQ_GetAlignedContributionsScoreSingleWeightGroup(SQ_Model pModel, SQ_FloatVector *pMaturity1, SQ_IntVector *pBatchIx1, SQ_StringVector *pPhaseIterations1, SQ_FloatVector *pMaturity2, SQ_IntVector *pBatchIx2, SQ_StringVector *pPhaseIterations2, SQ_WeightType eWeightType, int iComponent, SQ_ReconstructState bReconstruct, SQ_VectorData *pVectorData)
SQ_GetAlignedDModXOOCSum
SQ_ErrorCode SQ_GetAlignedDModXOOCSum(SQ_Model pModel, int iComponent, float fLimit, SQ_VectorData *pVectorData)
SQ_Bool
enum SQ_BoolEnum SQ_Bool
SQ_GetAlignedTo
SQ_ErrorCode SQ_GetAlignedTo(SQ_Model pModel, int iComponent, SQ_IntVector *pBatches, SQ_VectorData *pVectorData)
SQ_GetAlignedT2RangeOOCSum
SQ_ErrorCode SQ_GetAlignedT2RangeOOCSum(SQ_Model pModel, int iCompFrom, int iCompTo, SQ_VectorData *pVectorData)
SQ_IsBatchEvolutionModel
SQ_ErrorCode SQ_IsBatchEvolutionModel(SQ_Model pModel, SQ_Bool *bIsBEM)
SQ_GetAlignedYPred
SQ_ErrorCode SQ_GetAlignedYPred(SQ_Model pModel, int iComponent, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, SQ_IntVector *pBatches, SQ_VectorData *pVectorData)
SQ_GetAlignedYPredOOCSum
SQ_ErrorCode SQ_GetAlignedYPredOOCSum(SQ_Model pModel, int iComponent, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, float fHighLimit, float fLowLimit, SQ_VectorData *pVectorData)
SQ_GetAlignedXVar
SQ_ErrorCode SQ_GetAlignedXVar(SQ_Model pModel, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, int iXTerm, SQ_IntVector *pBatches, SQ_VectorData *pVectorData)
SQ_ScoreLimit
@ SQ_ScoreLimit
Definition: SQBatchEvolutionModel.h:31
SQ_GetAlignedT
SQ_ErrorCode SQ_GetAlignedT(SQ_Model pModel, int iComponent, SQ_IntVector *pBatches, SQ_VectorData *pVectorData)
SQ_GetAlignedXVarStdDevBatch
SQ_ErrorCode SQ_GetAlignedXVarStdDevBatch(SQ_Model pModel, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, int iXTerm, SQ_VectorData *pVectorData)
SQ_GetAlignedContributionsDModXGroup
SQ_ErrorCode SQ_GetAlignedContributionsDModXGroup(SQ_Model pModel, SQ_FloatVector *pMaturity, SQ_IntVector *pBatchIx, SQ_StringVector *pPhaseIterations, SQ_WeightType eWeightType, int iComponent, SQ_ReconstructState bReconstruct, SQ_VectorData *pVectorData)
SQ_GetAlignedContributionsDModYGroup
SQ_ErrorCode SQ_GetAlignedContributionsDModYGroup(SQ_Model pModel, SQ_FloatVector *pMaturity, SQ_IntVector *pBatchIx, SQ_StringVector *pPhaseIterations, SQ_WeightType eWeightType, int iComponent, SQ_VectorData *pVectorData)
SQ_GetAlignedT2Range
SQ_ErrorCode SQ_GetAlignedT2Range(SQ_Model pModel, int iCompFrom, int iCompTo, SQ_IntVector *pBatches, SQ_VectorData *pVectorData)
SQ_BacktransformedState
enum SQ_TriStateBacktransformedState SQ_BacktransformedState
SQ_WeightType
enum SQ_WeightTypeEnum SQ_WeightType
SQ_GetAlignedContributionsScoreSingleWeightGroupCombined
SQ_ErrorCode SQ_GetAlignedContributionsScoreSingleWeightGroupCombined(SQ_Model pModel, SQ_FloatVector *pMaturity, SQ_IntVector *pBatchIx, SQ_StringVector *pPhaseIterations, SQ_WeightType eWeightType, int iComponent, SQ_ReconstructState bReconstruct, SQ_VectorData *pVectorData)
tagSQ_IntVector
Definition: SQIntVector.h:27
SQ_GetAlignedTStdDevBatch
SQ_ErrorCode SQ_GetAlignedTStdDevBatch(SQ_Model pModel, int iComponent, SQ_VectorData *pVectorData)
SQ_GetAlignedTimeMaturity
SQ_ErrorCode SQ_GetAlignedTimeMaturity(SQ_Model pModel, SQ_VectorData *pVectorData)
SQ_GetAlignedToStdDevBatch
SQ_ErrorCode SQ_GetAlignedToStdDevBatch(SQ_Model pModel, int iComponent, SQ_VectorData *pVectorData)
SQ_GetAlignedYVar
SQ_ErrorCode SQ_GetAlignedYVar(SQ_Model pModel, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, SQ_IntVector *pBatches, SQ_VectorData *pVectorData)
SQ_GetAlignedYPredStdDevBatch
SQ_ErrorCode SQ_GetAlignedYPredStdDevBatch(SQ_Model pModel, int iComponent, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, SQ_VectorData *pVectorData)
SQ_GetBEMLimits
SQ_ErrorCode SQ_GetBEMLimits(SQ_Model pModel, SQ_LimitType eLimitType, int iCompFrom, int iCompTo, SQ_VectorData *pVectorData)
SQ_GetAlignedYVarAverageBatch
SQ_ErrorCode SQ_GetAlignedYVarAverageBatch(SQ_Model pModel, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, SQ_VectorData *pVectorData)
SQ_GetAlignedDModXAverageBatch
SQ_ErrorCode SQ_GetAlignedDModXAverageBatch(SQ_Model pModel, int iComponent, SQ_NormalizedState bNormalized, SQ_ModelingPowerWeightedState bModelingPowerWeighted, SQ_VectorData *pVectorData)
SQ_GetAlignedTAverageBatch
SQ_ErrorCode SQ_GetAlignedTAverageBatch(SQ_Model pModel, int iComponent, SQ_VectorData *pVectorData)
tagSQ_StringVector
Definition: SQStringVector.h:27
SQ_GetAlignedContributionsScoreSingleWeight
SQ_ErrorCode SQ_GetAlignedContributionsScoreSingleWeight(SQ_Model pModel, float fMaturity1, int iBatchIx1, const char *szPhaseIteration1, float fMaturity2, int iBatchIx2, const char *szPhaseIteration2, SQ_WeightType eWeightType, int iComponent, SQ_ReconstructState bReconstruct, SQ_VectorData *pVectorData)
SQ_GetModelNumberOfBatches
SQ_ErrorCode SQ_GetModelNumberOfBatches(SQ_Model pModel, int *piNrOfBatches)
SQ_ErrorCode
enum SQ_ErrorCodeEnum SQ_ErrorCode
SQ_GetModelBatchName
SQ_ErrorCode SQ_GetModelBatchName(SQ_Model pModel, int iBatchIx, char *szBatchName, int iBufferLength)
SQ_GetAlignedToAverageBatch
SQ_ErrorCode SQ_GetAlignedToAverageBatch(SQ_Model pModel, int iComponent, SQ_VectorData *pVectorData)
SQ_GetAlignedYPredAverageBatch
SQ_ErrorCode SQ_GetAlignedYPredAverageBatch(SQ_Model pModel, int iComponent, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, SQ_VectorData *pVectorData)
SQ_LimitEnumType
SQ_LimitEnumType
Definition: SQBatchEvolutionModel.h:29
SQ_GetAlignedContributionsScoreMultiWeight
SQ_ErrorCode SQ_GetAlignedContributionsScoreMultiWeight(SQ_Model pModel, float fMaturity1, int iBatchIx1, const char *szPhaseIteration1, float fMaturity2, int iBatchIx2, const char *szPhaseIteration2, SQ_IntVector *pWeightType, SQ_IntVector *pComponents, SQ_ReconstructState bReconstruct, SQ_VectorData *pVectorData)
SQ_ModelingPowerWeightedState
enum SQ_TriStateModelingPowerWeightedState SQ_ModelingPowerWeightedState
SQ_GetPhaseName
SQ_ErrorCode SQ_GetPhaseName(SQ_Model pModel, char *szPhaseName, int iBufferLength)
SQ_GetAlignedDModXStdDevBatch
SQ_ErrorCode SQ_GetAlignedDModXStdDevBatch(SQ_Model pModel, int iComponent, SQ_NormalizedState bNormalized, SQ_ModelingPowerWeightedState bModelingPowerWeighted, SQ_VectorData *pVectorData)
SQ_GetAlignedYVarStdDevBatch
SQ_ErrorCode SQ_GetAlignedYVarStdDevBatch(SQ_Model pModel, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, SQ_VectorData *pVectorData)
SQ_LimitType
enum SQ_LimitEnumType SQ_LimitType
SQErrorCodes.h
SQModel.h
SQ_GetAlignedDModX
SQ_ErrorCode SQ_GetAlignedDModX(SQ_Model pModel, int iComponent, SQ_NormalizedState bNormalized, SQ_ModelingPowerWeightedState bModelingPowerWeighted, SQ_IntVector *pBatches, SQ_VectorData *pVectorData)
tagSQ_ModelHandle
Definition: SQModel.h:24
SQ_DModXLimit
@ SQ_DModXLimit
Definition: SQBatchEvolutionModel.h:32
SQ_GetAlignedXVarAverageBatch
SQ_ErrorCode SQ_GetAlignedXVarAverageBatch(SQ_Model pModel, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, int iXTerm, SQ_VectorData *pVectorData)
tagSQ_VectorData
Definition: SQVectorData.h:29
SQ_GetAlignedTOOCSum
SQ_ErrorCode SQ_GetAlignedTOOCSum(SQ_Model pModel, int iComponent, float fHighLimit, float fLowLimit, SQ_VectorData *pVectorData)
SQ_NormalizedState
enum SQ_TriStateNormalizedState SQ_NormalizedState
SQ_T2RangeLimit
@ SQ_T2RangeLimit
Definition: SQBatchEvolutionModel.h:33
SQ_UnscaledState
enum SQ_TriStateUnscaledState SQ_UnscaledState
SQ_GetAlignedXVarOOCSum
SQ_ErrorCode SQ_GetAlignedXVarOOCSum(SQ_Model pModel, SQ_UnscaledState bUnscaled, SQ_BacktransformedState bBackTransformed, int iColumnXIndex, float fHighLimit, float fLowLimit, SQ_VectorData *pVectorData)

Copyright (C) Sartorius Stedim Data Analytics AB - Generated by Doxygen