Skip to content

epymorph.parameter_fitting.filter.particle

Particle

Particle(state: ndarray, parameters: dict[str, ndarray])

A class representing a single particle with its state and parameters.

Attributes:

  • state (ndarray) –

    The state of the particle, initialized through a model-specific method.

  • parameters (Dict[str, float]) –

    The dynamic parameters associated with the particle (e.g., beta).

Parameters:

  • state (ndarray) –

    Initial state of the particle.

  • parameters (Dict[str, ndarray]) –

    Dictionary of dynamic parameters for the particle.

state instance-attribute

state = state

parameters instance-attribute

parameters = parameters