Engee documentation

rc2is

Conversion of reflection coefficients into arcsine parameters.

Library

EngeeDSP

Syntax

Function call

  • isin = rc2is(k) — returns the arcsin parameters isin obtained from reflection coefficients k.

Arguments

Input arguments

# k — reflection coefficients

+ vector | the matrix

Details

A list of reflection coefficients specified as a vector or matrix.

Типы данных

Float32, Float64

Output arguments

# isin — arcsin parameters

+ vector | the matrix

Details

The arcsin parameters returned as a vector or matrix, where isin = (2/π) * asin(k).

Examples

Calculation of the arcsin parameters

Details

Set the vector k the reflection coefficients and determine the corresponding parameters of the arcsine.

import EngeeDSP.Functions: rc2is

k = [0.3090 0.9801 0.0031 0.0082 -0.0082]
isin = rc2is(k)
1×5 Matrix{Float64}:
 0.199989  0.872783  0.00197352  0.00522034  -0.00522034

Literature

  1. Deller, John R., John G. Proakis, and John H. L. Hansen. Discrete-Time Processing of Speech Signals. New York: Macmillan, 1993.