summaryrefslogtreecommitdiff
path: root/help/en_US/peak2rms.xml
diff options
context:
space:
mode:
Diffstat (limited to 'help/en_US/peak2rms.xml')
-rw-r--r--help/en_US/peak2rms.xml18
1 files changed, 9 insertions, 9 deletions
diff --git a/help/en_US/peak2rms.xml b/help/en_US/peak2rms.xml
index dd21dae..4e1e4e0 100644
--- a/help/en_US/peak2rms.xml
+++ b/help/en_US/peak2rms.xml
@@ -73,13 +73,13 @@ If the elements of matrix are complex the absolute values are considered in the
<refsection>
<title>Examples</title>
<programlisting role="example"><![CDATA[
-To calculate peak2rms of a vector:
+//To calculate peak2rms of a vector:
IN=[6 19 10 25]
OUT=peak2rms(IN)
-The output is OUT=
-1.4638501
-1.3887301
-1.119186
+//The output is OUT=
+//1.4638501
+//1.3887301
+//1.119186
]]></programlisting>
</refsection>
@@ -90,8 +90,8 @@ The output is OUT=
To calculate peak2rms of rows of matrix:
IN=[1 3 5;2 4 6;7 8 9]
OUT=peak2rms(IN,2)
-The output is
-OUT= 1.3719887
+//The output is
+//OUT= 1.3719887
]]></programlisting>
</refsection>
@@ -104,8 +104,8 @@ To calculate peak magnitude to RMS value of sinusoid:
t=0:0.6:9
IN=cos(6*%pi*t);
OUT= peak2rms(IN)
-The output is
-OUT= 1.3719887
+//The output is
+//OUT= 1.3719887
]]></programlisting>
</refsection>