diff options
author | avinashlalotra | 2025-04-26 20:09:12 +0530 |
---|---|---|
committer | avinashlalotra | 2025-04-26 20:09:12 +0530 |
commit | ea7dcdba3b83696b97cc431ee050b58f9a0f3507 (patch) | |
tree | 49ea8ba898b88535c261546f4e3accbdf4c83bdf /macros/lar2rc.sci | |
parent | 725d9ee2ddb254f57a896bb47e0e727759eb5901 (diff) | |
download | FOSSEE-Signal-Processing-Toolbox-ea7dcdba3b83696b97cc431ee050b58f9a0f3507.tar.gz FOSSEE-Signal-Processing-Toolbox-ea7dcdba3b83696b97cc431ee050b58f9a0f3507.tar.bz2 FOSSEE-Signal-Processing-Toolbox-ea7dcdba3b83696b97cc431ee050b58f9a0f3507.zip |
formated source documentation pattern for generating docs
Diffstat (limited to 'macros/lar2rc.sci')
-rw-r--r-- | macros/lar2rc.sci | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/macros/lar2rc.sci b/macros/lar2rc.sci index 6a41b36..f05e7e0 100644 --- a/macros/lar2rc.sci +++ b/macros/lar2rc.sci @@ -1,16 +1,13 @@ function k=lar2rc(g) - //lar2rc convert log area ratios to reflection coefficients. // Calling Sequence // k = lar2rc(g) // Parameters // g: define log area ratios. // k: returns the reflection coefficients. - // Example //g = [0.6389 4.5989 0.0063 0.0163 -0.0163]; //k = lar2rc(g) - // Output : //k = // @@ -22,14 +19,13 @@ function k=lar2rc(g) // column 5 // // - 0.0081498 - - // See also // // Author // Jitendra Singh // //Modified to match MATLAB o/p when i/p is of type char and is a string by Debdeep Dey + if or(type(g)==10) then [r,c]=size(g); if r==1 & c==1 then |