diff options
Diffstat (limited to 'help/en_US/is2rc.xml')
-rw-r--r-- | help/en_US/is2rc.xml | 34 |
1 files changed, 23 insertions, 11 deletions
diff --git a/help/en_US/is2rc.xml b/help/en_US/is2rc.xml index 8f1bd14..0da550b 100644 --- a/help/en_US/is2rc.xml +++ b/help/en_US/is2rc.xml @@ -25,7 +25,7 @@ <title>Calling Sequence</title> <synopsis> K = is2rc(isin) - + </synopsis> </refsynopsisdiv> @@ -42,28 +42,40 @@ <refsection> <title>Description</title> <para> -This function returns a vector of reflection coefficients from a vector of inverse sine parameters -output array has k(i) = sin(pi/2*isin(i)) - </para> - <para> -Example -k = [0.3090 0.9801 0.0031 0.0082 -0.0082]; -isin = rc2is(k) //Gives inverse sine parameters -k_dash = is2rc(isin) +This function returns a vector of reflection coefficients from a vector of inverse sine parameters.<para></para>output array has k(i) = sin(pi/2*isin(i)) + </para> <para> </para> </refsection> <refsection> + <title>Example 1</title> + <programlisting role="example"><![CDATA[ + k = [0.3090 0.9801 0.0031 0.0082 -0.0082]; + isin = rc2is(k) //Gives inverse sine parameters + k_dash = is2rc(isin) +// EXPECTED OUTPUT : +//isin = [0.1999886 0.8727832 0.0019735 0.0052203 -0.0052203 ] +//k_dash =[0.309 0.9801 0.0031 0.0082 - 0.0082] + ]]></programlisting> +</refsection> + +<refsection> <title>See also</title> <simplelist type="inline"> <member><link linkend="rc2is">rc2is</link></member> <member><link linkend="rc2poly">rc2poly</link></member> <member><link linkend="rc2ac">rc2ac</link></member> <member><link linkend="rc2lar">rc2lar</link></member> - <member><link linkend="Author">Author</link></member> - <member><link linkend="Parthe">Pandit</link></member> + + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Parthe Pandit</member> </simplelist> </refsection> |