ClinicalDescriptor#

class pyCGM2.Model.model.ClinicalDescriptor(dataType: DataType, jointOrSegmentLabel: str, indexes: List[int], coefficients: List[float], offsets: List[float], **options: Dict[str, Any])#

A clinical descriptor for biomechanical data analysis.

Parameters:
  • dataType (enums.DataType) – Type of data (e.g., Angle, Moment, etc. See enums).

  • jointOrSegmentLabel (str) – Label of the joint or segment.

  • indexes (List[int]) – Indices of the outputs (usually a list of three elements).

  • coefficients (List[float]) – Coefficients to apply on the outputs.

  • offsets (List[float]) – Offsets to apply on the outputs (e.g., subtraction of 180 degrees).

Kwargs:

projection (Optional[enums.MomentProjection]): Coordinate system used to project the joint moment.

Example

`python ClinicalDescriptor(enums.DataType.Angle, "LHip", [0, 1, 2], [-1.0, -1.0, -1.0], [0.0, 0.0, 0.0]) `

__init__(dataType: DataType, jointOrSegmentLabel: str, indexes: List[int], coefficients: List[float], offsets: List[float], **options: Dict[str, Any])#

Methods

__init__(dataType, jointOrSegmentLabel, ...)