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 aLinspaceobject representing the frequency grid of the data.entries (
AnyArray) – An array of shape(n_batch, n_channels, n_harmonics, n_features, Nf)whereNfis the size offrequencies. See theconventionfor more details.channels (
tuple[str,]) – Names of the channels in the data.times (
Axis) – An array of shape(n_times,)or aLinspaceobject representing the associated time grid of the data.name (
str | None) – Name of the data. Default isNone.
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.