rc2isConvert reflection coefficients to inverse sine parametersCalling Sequence
isin = rc2is(K)
Parametersk: input reflection coefficients. Needs to be an array of real numbers between -1 and 1isin: inverse sine parameters corresponding to the reflection coefficients in inputDescription
This function returns the inverse sine parameters corresponding to the input reflection coefficients K.
output array has isin(i) = 2/pi*asin(k(i))
Example
k = [0.3090 0.9801 0.0031 0.0082 -0.0082];
isin = rc2is(k) //Gives inverse sine parameters
See alsois2rcrc2polyrc2acrc2larAuthorsParthe PanditBibliographyJ.R. Deller, J.G. Proakis, J.H.L. Hansen, "Discrete-Time Processing of Speech Signals", Prentice Hall, Section 7.4.5modified function to handle char i/p and also changed error statements to match those of MATLAB by Debdeep Deyconvert char i/p to their respective ascii values