Source code for pyaml.magnet.csvmatrix

from pathlib import Path

import numpy as np
from pydantic import BaseModel, ConfigDict

from ..common.exception import PyAMLException
from ..configuration.fileloader import get_path
from .matrix import Matrix

# Define the main class name for this module
PYAMLCLASS = "CSVMatrix"


[docs] class ConfigModel(BaseModel): """ Configuration model for CSV matrix Parameters ---------- file : str CSV file that contains the matrix """ model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid") file: str
[docs] class CSVMatrix(Matrix): """ Class for loading CSV matrix """ def __init__(self, cfg: ConfigModel): self._cfg = cfg # Load CSV matrix path = get_path(cfg.file) try: self._mat = np.genfromtxt(path, delimiter=",", dtype=float, loose=False) except ValueError as e: raise PyAMLException(f"CSVMatrix(file='{cfg.file}',dtype=float): {str(e)}") from None
[docs] def get_matrix(self) -> np.array: """ Get the matrix data. Returns ------- np.array Matrix data as a numpy array """ return self._mat
def __repr__(self): return repr(self._cfg).replace("ConfigModel", self.__class__.__name__)