construct_fsdata§

typed_lisa_toolkit.construct_fsdata(*, frequencies: AnyAxis | AxLike, entries: Array[Any, ModuleType] | ndarray[tuple[Any, ...], dtype[Any]], channels: tuple[str, ...], times: AnyAxis | AxLike, name: str | None = None) TimedFSData[source]§
typed_lisa_toolkit.construct_fsdata(*, frequencies: AnyAxis | AxLike, entries: Array[Any, ModuleType] | ndarray[tuple[Any, ...], dtype[Any]], channels: tuple[str, ...], name: str | None = None) FSData

Construct an FSData (Deprecated).

Parameters:
  • frequencies (Axis) – A uniform array of shape (n_freqs,) or a Linspace object representing the frequency grid of the data.

  • entries (AnyArray) – An array of shape (n_batch, n_channels, n_harmonics, n_features, Nf) where Nf is the size of frequencies. See the convention for more details.

  • channels – Names of the channels in the data.

  • name (str, optional) – Name of the data.

Warning

This function is deprecated and will be removed in 0.8.0; use the fsdata() function with the keyword arguments instead.