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 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 – 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.