pub fn dstn<T>(
x: &ArrayView<'_, T, IxDyn>,
dst_type: Option<DSTType>,
norm: Option<&str>,
axes: Option<Vec<usize>>,
) -> FFTResult<Array<f64, IxDyn>>
Expand description
Compute the N-dimensional discrete sine transform.
§Arguments
x
- Input arraydst_type
- Type of DST to perform (default: Type2)norm
- Normalization mode (None, “ortho”)axes
- Axes over which to compute the DST (optional, defaults to all axes)
§Returns
- The N-dimensional DST of the input array
§Examples
// Example will be expanded when the function is fully implemented