construct_timed_fsdata§

typed_lisa_toolkit.construct_timed_fsdata(*, frequencies, entries, channels, times, name=None) TimedFSData[source]§

Construct a TimedFSData (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 (tuple[str, ]) – Names of the channels in the data.

  • times (Axis) – An array of shape (n_times,) or a Linspace object representing the associated time grid of the data.

  • name (str | None) – Name of the data. Default is None.

Note

The associated time grid does not count as a grid dimension of the data, hence the shape of entries does include the time dimension.

Warning

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