<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to complex valued quantities</title><link>https://sourceforge.net/p/freemuse/wiki/complex%2520valued%2520quantities/</link><description>Recent changes to complex valued quantities</description><atom:link href="https://sourceforge.net/p/freemuse/wiki/complex%20valued%20quantities/feed" rel="self"/><language>en</language><lastBuildDate>Sun, 05 Jun 2011 09:36:45 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/freemuse/wiki/complex%20valued%20quantities/feed" rel="self" type="application/rss+xml"/><item><title>&lt;pre&gt;--- v5 
+++ v6 
@@ -1,64 +1,63 @@
-Complex valued quantities
-===
-
+#Complex valued quantities#
+
 MUSE can represent complex valued quantities by the real and imaginary part as well as by an argument (angle) and a magnitude (absolut value or modulus).
 
 A complex valued quantity can therefore be described by a two dimensional PDF where one marginal distribution defines the real and the other one the imaginary part. If x is a complex valued quantity re(x) defines the PDF of the real part and im(x) the PDF of the imaginary part of x. MUSE provides three ways to define a complex valued quantity.
 
 * The distribution complex
 * The function complex
 * The function polar
 
 It is also possible to [convert](Conversion of Complex valued quantities) between the two different representations.
 
 The distribution complex
 
 A complex distribution with a Gaussian distributed real- and imaginary part can be defined as a basic model like follows: 
 
 ~~~~
 &lt;model name="Complex" targetid="s"&gt;
  &lt;model name="Complex" targetid="s"&gt;
   &lt;influence id="s" name="Complex"&gt;
     &lt;distribution id="c"&gt;
       &lt;complex&gt;
         &lt;realpart&gt;
           &lt;distribution&gt;
             &lt;gauss&gt;
               &lt;mu parameter="#111"&gt;1&lt;/mu&gt;
               &lt;sigma parameter="#112"&gt;1&lt;/sigma&gt;
             &lt;/gauss&gt;
           &lt;/distribution&gt;
         &lt;/realpart&gt;
         &lt;imaginarypart&gt;
           &lt;distribution&gt;
             &lt;gauss&gt;
               &lt;mu parameter="#113"&gt;1&lt;/mu&gt;
               &lt;sigma parameter="#114"&gt;1&lt;/sigma&gt;
             &lt;/gauss&gt;
           &lt;/distribution&gt;
         &lt;/imaginarypart&gt;  
       &lt;/complex&gt;
     &lt;/distribution&gt;
   &lt;/influence&gt;
 &lt;/model&gt;
 ~~~~
 
 By this definition the real part is Gaussian distributed with a mean value of 0 and a standard deviation of 1. The imaginary part has a mean of 1 with a standard deviation of 1. This distribution can now be used in the same way like other distributions. So we can define a inﬂuence in the initialization section by the statement 
 
     &lt;instance name="s1" model="complex"&gt;&lt;/instance&gt;
 
 and use it with all the given operators in the formula to calculate the uncertainty.
 
 Of course it is possible to use each [supported distribution](Distributions) instead of Gaussian distributions in the definition above. 
 
-Function complex
----
+###Function complex###
+
 (since version 0.6)
 
 A complex valued quantity can be defined using the function complex. This function returns the complex number which corresponds to a specified real and imaginary part in Cartesian form. For example we can take a Gaussian distribution with a mean of 1 and a standard deviation of 0.1 for the real part and the same one for the imaginary. This can be defined by the following simulation ﬁle.
 
 ~~~~
 &lt;simulation&gt;
   &lt;initialization&gt;
     &lt;instance name="_real" model="gaussparam"&gt;
       &lt;parameters&gt;
@@ -72,16 +71,15 @@
         &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
       &lt;/parameters&gt;
     &lt;/instance&gt;
   &lt;/initialization&gt;
   &lt;calculation dimensions="-1"&gt;
     &lt;analyse mode="on" histbars="40" datafiles="delete"/&gt;
     &lt;uncertainty&gt; complex(_real,_imag) &lt;/uncertainty&gt;
   &lt;/calculation&gt;
 &lt;/simulation&gt;
 ~~~~
 
-Function polar
----
+###Function polar###
 (since version 0.6)
 
 A complex valued quantity can be defined using the function polar. This function returns the complex number which corresponds to a specified modulus and argument part in the polar form. For example we can take a Gaussian distribution with a mean of 1 and a standard deviation of 0.1 for the modulus part and a Gaussian distribution with a mean value of pi/4 and a standard deviation of 0.1 for the argument. This can be defined by the following simulation ﬁle.
&lt;/pre&gt;</title><link>https://sourceforge.net/p/freemuse/wiki/complex%2520valued%2520quantities/</link><description>&lt;pre&gt;--- v5 
+++ v6 
@@ -1,64 +1,63 @@
-Complex valued quantities
-===
-
+#Complex valued quantities#
+
 MUSE can represent complex valued quantities by the real and imaginary part as well as by an argument (angle) and a magnitude (absolut value or modulus).
 
 A complex valued quantity can therefore be described by a two dimensional PDF where one marginal distribution defines the real and the other one the imaginary part. If x is a complex valued quantity re(x) defines the PDF of the real part and im(x) the PDF of the imaginary part of x. MUSE provides three ways to define a complex valued quantity.
 
 * The distribution complex
 * The function complex
 * The function polar
 
 It is also possible to [convert](Conversion of Complex valued quantities) between the two different representations.
 
 The distribution complex
 
 A complex distribution with a Gaussian distributed real- and imaginary part can be defined as a basic model like follows: 
 
 ~~~~
 &lt;model name="Complex" targetid="s"&gt;
  &lt;model name="Complex" targetid="s"&gt;
   &lt;influence id="s" name="Complex"&gt;
     &lt;distribution id="c"&gt;
       &lt;complex&gt;
         &lt;realpart&gt;
           &lt;distribution&gt;
             &lt;gauss&gt;
               &lt;mu parameter="#111"&gt;1&lt;/mu&gt;
               &lt;sigma parameter="#112"&gt;1&lt;/sigma&gt;
             &lt;/gauss&gt;
           &lt;/distribution&gt;
         &lt;/realpart&gt;
         &lt;imaginarypart&gt;
           &lt;distribution&gt;
             &lt;gauss&gt;
               &lt;mu parameter="#113"&gt;1&lt;/mu&gt;
               &lt;sigma parameter="#114"&gt;1&lt;/sigma&gt;
             &lt;/gauss&gt;
           &lt;/distribution&gt;
         &lt;/imaginarypart&gt;  
       &lt;/complex&gt;
     &lt;/distribution&gt;
   &lt;/influence&gt;
 &lt;/model&gt;
 ~~~~
 
 By this definition the real part is Gaussian distributed with a mean value of 0 and a standard deviation of 1. The imaginary part has a mean of 1 with a standard deviation of 1. This distribution can now be used in the same way like other distributions. So we can define a inﬂuence in the initialization section by the statement 
 
     &lt;instance name="s1" model="complex"&gt;&lt;/instance&gt;
 
 and use it with all the given operators in the formula to calculate the uncertainty.
 
 Of course it is possible to use each [supported distribution](Distributions) instead of Gaussian distributions in the definition above. 
 
-Function complex
----
+###Function complex###
+
 (since version 0.6)
 
 A complex valued quantity can be defined using the function complex. This function returns the complex number which corresponds to a specified real and imaginary part in Cartesian form. For example we can take a Gaussian distribution with a mean of 1 and a standard deviation of 0.1 for the real part and the same one for the imaginary. This can be defined by the following simulation ﬁle.
 
 ~~~~
 &lt;simulation&gt;
   &lt;initialization&gt;
     &lt;instance name="_real" model="gaussparam"&gt;
       &lt;parameters&gt;
@@ -72,16 +71,15 @@
         &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
       &lt;/parameters&gt;
     &lt;/instance&gt;
   &lt;/initialization&gt;
   &lt;calculation dimensions="-1"&gt;
     &lt;analyse mode="on" histbars="40" datafiles="delete"/&gt;
     &lt;uncertainty&gt; complex(_real,_imag) &lt;/uncertainty&gt;
   &lt;/calculation&gt;
 &lt;/simulation&gt;
 ~~~~
 
-Function polar
----
+###Function polar###
 (since version 0.6)
 
 A complex valued quantity can be defined using the function polar. This function returns the complex number which corresponds to a specified modulus and argument part in the polar form. For example we can take a Gaussian distribution with a mean of 1 and a standard deviation of 0.1 for the modulus part and a Gaussian distribution with a mean value of pi/4 and a standard deviation of 0.1 for the argument. This can be defined by the following simulation ﬁle.
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Mueller</dc:creator><pubDate>Sun, 05 Jun 2011 09:36:45 -0000</pubDate><guid>https://sourceforge.net27b477d4898e4be74482cdf6e61775161b267e22</guid></item><item><title>&lt;pre&gt;--- v4 
+++ v5 
@@ -9,52 +9,52 @@
 * The function complex
 * The function polar
 
-It is also possible to [convert](Conversion of complex numbers) between the two different representations.
-
+It is also possible to [convert](Conversion of Complex valued quantities) between the two different representations.
+
 The distribution complex
 
 A complex distribution with a Gaussian distributed real- and imaginary part can be defined as a basic model like follows: 
 
 ~~~~
 &lt;model name="Complex" targetid="s"&gt;
  &lt;model name="Complex" targetid="s"&gt;
   &lt;influence id="s" name="Complex"&gt;
     &lt;distribution id="c"&gt;
       &lt;complex&gt;
         &lt;realpart&gt;
           &lt;distribution&gt;
             &lt;gauss&gt;
               &lt;mu parameter="#111"&gt;1&lt;/mu&gt;
               &lt;sigma parameter="#112"&gt;1&lt;/sigma&gt;
             &lt;/gauss&gt;
           &lt;/distribution&gt;
         &lt;/realpart&gt;
         &lt;imaginarypart&gt;
           &lt;distribution&gt;
             &lt;gauss&gt;
               &lt;mu parameter="#113"&gt;1&lt;/mu&gt;
               &lt;sigma parameter="#114"&gt;1&lt;/sigma&gt;
             &lt;/gauss&gt;
           &lt;/distribution&gt;
         &lt;/imaginarypart&gt;  
       &lt;/complex&gt;
     &lt;/distribution&gt;
   &lt;/influence&gt;
 &lt;/model&gt;
 ~~~~
 
 By this definition the real part is Gaussian distributed with a mean value of 0 and a standard deviation of 1. The imaginary part has a mean of 1 with a standard deviation of 1. This distribution can now be used in the same way like other distributions. So we can define a inﬂuence in the initialization section by the statement 
 
     &lt;instance name="s1" model="complex"&gt;&lt;/instance&gt;
 
 and use it with all the given operators in the formula to calculate the uncertainty.
 
 Of course it is possible to use each [supported distribution](Distributions) instead of Gaussian distributions in the definition above. 
 
 Function complex
 ---
 (since version 0.6)
 
 A complex valued quantity can be defined using the function complex. This function returns the complex number which corresponds to a specified real and imaginary part in Cartesian form. For example we can take a Gaussian distribution with a mean of 1 and a standard deviation of 0.1 for the real part and the same one for the imaginary. This can be defined by the following simulation ﬁle.
 
 ~~~~
@@ -75,28 +75,28 @@
   &lt;/initialization&gt;
   &lt;calculation dimensions="-1"&gt;
     &lt;analyse mode="on" histbars="40" datafiles="delete"/&gt;
     &lt;uncertainty&gt; complex(_real,_imag) &lt;/uncertainty&gt;
   &lt;/calculation&gt;
 &lt;/simulation&gt;
 ~~~~
 
 Function polar
 ---
 (since version 0.6)
 
 A complex valued quantity can be defined using the function polar. This function returns the complex number which corresponds to a specified modulus and argument part in the polar form. For example we can take a Gaussian distribution with a mean of 1 and a standard deviation of 0.1 for the modulus part and a Gaussian distribution with a mean value of pi/4 and a standard deviation of 0.1 for the argument. This can be defined by the following simulation ﬁle.
 
 ~~~~
 &lt;simulation&gt;
   &lt;initialization&gt;
     &lt;instance name="_mod" model="gaussparam"&gt;
       &lt;parameters&gt;
         &lt;parameter id="#1"&gt;1&lt;/parameter&gt;
         &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
       &lt;/parameters&gt;
     &lt;/instance&gt;
     &lt;instance name="_arg" model="gaussparam"&gt;
       &lt;parameters&gt;
         &lt;parameter id="#1"&gt;pi/4&lt;/parameter&gt;
         &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
       &lt;/parameters&gt;
@@ -104,9 +104,9 @@
   &lt;/initialization&gt;
   &lt;calculation dimensions="-1"&gt;
     &lt;analyse mode="on" histbars="40" datafiles="delete"/&gt;
     &lt;uncertainty&gt; polar(_mod,_arg) &lt;/uncertainty&gt;
   &lt;/calculation&gt;
 &lt;/simulation&gt;
 ~~~~
 
-Beware that not all operations are defined in polar coordinates! [Here](Convertion of complex numbers) you can see how to convert between the two different representations of complex numbers.     
+Beware that not all operations are defined in polar coordinates! [Here](Conversion of Complex valued quantities) you can see how to convert between the two different representations of complex numbers.     
&lt;/pre&gt;</title><link>https://sourceforge.net/p/freemuse/wiki/complex%2520valued%2520quantities/</link><description>&lt;pre&gt;--- v4 
+++ v5 
@@ -9,52 +9,52 @@
 * The function complex
 * The function polar
 
-It is also possible to [convert](Conversion of complex numbers) between the two different representations.
-
+It is also possible to [convert](Conversion of Complex valued quantities) between the two different representations.
+
 The distribution complex
 
 A complex distribution with a Gaussian distributed real- and imaginary part can be defined as a basic model like follows: 
 
 ~~~~
 &lt;model name="Complex" targetid="s"&gt;
  &lt;model name="Complex" targetid="s"&gt;
   &lt;influence id="s" name="Complex"&gt;
     &lt;distribution id="c"&gt;
       &lt;complex&gt;
         &lt;realpart&gt;
           &lt;distribution&gt;
             &lt;gauss&gt;
               &lt;mu parameter="#111"&gt;1&lt;/mu&gt;
               &lt;sigma parameter="#112"&gt;1&lt;/sigma&gt;
             &lt;/gauss&gt;
           &lt;/distribution&gt;
         &lt;/realpart&gt;
         &lt;imaginarypart&gt;
           &lt;distribution&gt;
             &lt;gauss&gt;
               &lt;mu parameter="#113"&gt;1&lt;/mu&gt;
               &lt;sigma parameter="#114"&gt;1&lt;/sigma&gt;
             &lt;/gauss&gt;
           &lt;/distribution&gt;
         &lt;/imaginarypart&gt;  
       &lt;/complex&gt;
     &lt;/distribution&gt;
   &lt;/influence&gt;
 &lt;/model&gt;
 ~~~~
 
 By this definition the real part is Gaussian distributed with a mean value of 0 and a standard deviation of 1. The imaginary part has a mean of 1 with a standard deviation of 1. This distribution can now be used in the same way like other distributions. So we can define a inﬂuence in the initialization section by the statement 
 
     &lt;instance name="s1" model="complex"&gt;&lt;/instance&gt;
 
 and use it with all the given operators in the formula to calculate the uncertainty.
 
 Of course it is possible to use each [supported distribution](Distributions) instead of Gaussian distributions in the definition above. 
 
 Function complex
 ---
 (since version 0.6)
 
 A complex valued quantity can be defined using the function complex. This function returns the complex number which corresponds to a specified real and imaginary part in Cartesian form. For example we can take a Gaussian distribution with a mean of 1 and a standard deviation of 0.1 for the real part and the same one for the imaginary. This can be defined by the following simulation ﬁle.
 
 ~~~~
@@ -75,28 +75,28 @@
   &lt;/initialization&gt;
   &lt;calculation dimensions="-1"&gt;
     &lt;analyse mode="on" histbars="40" datafiles="delete"/&gt;
     &lt;uncertainty&gt; complex(_real,_imag) &lt;/uncertainty&gt;
   &lt;/calculation&gt;
 &lt;/simulation&gt;
 ~~~~
 
 Function polar
 ---
 (since version 0.6)
 
 A complex valued quantity can be defined using the function polar. This function returns the complex number which corresponds to a specified modulus and argument part in the polar form. For example we can take a Gaussian distribution with a mean of 1 and a standard deviation of 0.1 for the modulus part and a Gaussian distribution with a mean value of pi/4 and a standard deviation of 0.1 for the argument. This can be defined by the following simulation ﬁle.
 
 ~~~~
 &lt;simulation&gt;
   &lt;initialization&gt;
     &lt;instance name="_mod" model="gaussparam"&gt;
       &lt;parameters&gt;
         &lt;parameter id="#1"&gt;1&lt;/parameter&gt;
         &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
       &lt;/parameters&gt;
     &lt;/instance&gt;
     &lt;instance name="_arg" model="gaussparam"&gt;
       &lt;parameters&gt;
         &lt;parameter id="#1"&gt;pi/4&lt;/parameter&gt;
         &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
       &lt;/parameters&gt;
@@ -104,9 +104,9 @@
   &lt;/initialization&gt;
   &lt;calculation dimensions="-1"&gt;
     &lt;analyse mode="on" histbars="40" datafiles="delete"/&gt;
     &lt;uncertainty&gt; polar(_mod,_arg) &lt;/uncertainty&gt;
   &lt;/calculation&gt;
 &lt;/simulation&gt;
 ~~~~
 
-Beware that not all operations are defined in polar coordinates! [Here](Convertion of complex numbers) you can see how to convert between the two different representations of complex numbers.     
+Beware that not all operations are defined in polar coordinates! [Here](Conversion of Complex valued quantities) you can see how to convert between the two different representations of complex numbers.     
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Mueller</dc:creator><pubDate>Sun, 05 Jun 2011 06:57:39 -0000</pubDate><guid>https://sourceforge.net93f87781b3bc756f5a36f9e355c62146de152766</guid></item><item><title>&lt;pre&gt;--- v3 
+++ v4 
@@ -9,7 +9,7 @@
 * The function complex
 * The function polar
 
-It is also possible to [convert] between the two different representations.
+It is also possible to [convert](Conversion of complex numbers) between the two different representations.
 
 The distribution complex
 
&lt;/pre&gt;</title><link>https://sourceforge.net/p/freemuse/wiki/complex%2520valued%2520quantities/</link><description>&lt;pre&gt;--- v3 
+++ v4 
@@ -9,7 +9,7 @@
 * The function complex
 * The function polar
 
-It is also possible to [convert] between the two different representations.
+It is also possible to [convert](Conversion of complex numbers) between the two different representations.
 
 The distribution complex
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Mueller</dc:creator><pubDate>Sun, 05 Jun 2011 06:55:59 -0000</pubDate><guid>https://sourceforge.net558851559fa568b9c23887b85da82d97f1811cb3</guid></item><item><title>&lt;pre&gt;--- v2 
+++ v3 
@@ -1,60 +1,62 @@
 Complex valued quantities
-=====
-
+===
+
 MUSE can represent complex valued quantities by the real and imaginary part as well as by an argument (angle) and a magnitude (absolut value or modulus).
 
 A complex valued quantity can therefore be described by a two dimensional PDF where one marginal distribution defines the real and the other one the imaginary part. If x is a complex valued quantity re(x) defines the PDF of the real part and im(x) the PDF of the imaginary part of x. MUSE provides three ways to define a complex valued quantity.
 
 * The distribution complex
 * The function complex
 * The function polar
 
 It is also possible to [convert] between the two different representations.
 
 The distribution complex
-===
 
 A complex distribution with a Gaussian distributed real- and imaginary part can be defined as a basic model like follows: 
+
 ~~~~
 &lt;model name="Complex" targetid="s"&gt;
  &lt;model name="Complex" targetid="s"&gt;
   &lt;influence id="s" name="Complex"&gt;
     &lt;distribution id="c"&gt;
       &lt;complex&gt;
         &lt;realpart&gt;
           &lt;distribution&gt;
             &lt;gauss&gt;
               &lt;mu parameter="#111"&gt;1&lt;/mu&gt;
               &lt;sigma parameter="#112"&gt;1&lt;/sigma&gt;
             &lt;/gauss&gt;
           &lt;/distribution&gt;
         &lt;/realpart&gt;
         &lt;imaginarypart&gt;
           &lt;distribution&gt;
             &lt;gauss&gt;
               &lt;mu parameter="#113"&gt;1&lt;/mu&gt;
               &lt;sigma parameter="#114"&gt;1&lt;/sigma&gt;
             &lt;/gauss&gt;
           &lt;/distribution&gt;
         &lt;/imaginarypart&gt;  
       &lt;/complex&gt;
     &lt;/distribution&gt;
   &lt;/influence&gt;
 &lt;/model&gt;
 ~~~~
+
 By this definition the real part is Gaussian distributed with a mean value of 0 and a standard deviation of 1. The imaginary part has a mean of 1 with a standard deviation of 1. This distribution can now be used in the same way like other distributions. So we can define a inﬂuence in the initialization section by the statement 
 
     &lt;instance name="s1" model="complex"&gt;&lt;/instance&gt;
 
 and use it with all the given operators in the formula to calculate the uncertainty.
 
 Of course it is possible to use each [supported distribution](Distributions) instead of Gaussian distributions in the definition above. 
 
 Function complex
-===
+---
 (since version 0.6)
 
 A complex valued quantity can be defined using the function complex. This function returns the complex number which corresponds to a specified real and imaginary part in Cartesian form. For example we can take a Gaussian distribution with a mean of 1 and a standard deviation of 0.1 for the real part and the same one for the imaginary. This can be defined by the following simulation ﬁle.
+
 ~~~~
 &lt;simulation&gt;
   &lt;initialization&gt;
@@ -73,26 +75,28 @@
   &lt;/initialization&gt;
   &lt;calculation dimensions="-1"&gt;
     &lt;analyse mode="on" histbars="40" datafiles="delete"/&gt;
     &lt;uncertainty&gt; complex(_real,_imag) &lt;/uncertainty&gt;
   &lt;/calculation&gt;
 &lt;/simulation&gt;
 ~~~~
+
 Function polar
-===
+---
 (since version 0.6)
 
 A complex valued quantity can be defined using the function polar. This function returns the complex number which corresponds to a specified modulus and argument part in the polar form. For example we can take a Gaussian distribution with a mean of 1 and a standard deviation of 0.1 for the modulus part and a Gaussian distribution with a mean value of pi/4 and a standard deviation of 0.1 for the argument. This can be defined by the following simulation ﬁle.
+
 ~~~~
 &lt;simulation&gt;
   &lt;initialization&gt;
     &lt;instance name="_mod" model="gaussparam"&gt;
       &lt;parameters&gt;
         &lt;parameter id="#1"&gt;1&lt;/parameter&gt;
         &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
       &lt;/parameters&gt;
     &lt;/instance&gt;
     &lt;instance name="_arg" model="gaussparam"&gt;
       &lt;parameters&gt;
         &lt;parameter id="#1"&gt;pi/4&lt;/parameter&gt;
         &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
       &lt;/parameters&gt;
@@ -100,8 +104,9 @@
   &lt;/initialization&gt;
   &lt;calculation dimensions="-1"&gt;
     &lt;analyse mode="on" histbars="40" datafiles="delete"/&gt;
     &lt;uncertainty&gt; polar(_mod,_arg) &lt;/uncertainty&gt;
   &lt;/calculation&gt;
 &lt;/simulation&gt;
 ~~~~
+
 Beware that not all operations are defined in polar coordinates! [Here](Convertion of complex numbers) you can see how to convert between the two different representations of complex numbers.     
&lt;/pre&gt;</title><link>https://sourceforge.net/p/freemuse/wiki/complex%2520valued%2520quantities/</link><description>&lt;pre&gt;--- v2 
+++ v3 
@@ -1,60 +1,62 @@
 Complex valued quantities
-=====
-
+===
+
 MUSE can represent complex valued quantities by the real and imaginary part as well as by an argument (angle) and a magnitude (absolut value or modulus).
 
 A complex valued quantity can therefore be described by a two dimensional PDF where one marginal distribution defines the real and the other one the imaginary part. If x is a complex valued quantity re(x) defines the PDF of the real part and im(x) the PDF of the imaginary part of x. MUSE provides three ways to define a complex valued quantity.
 
 * The distribution complex
 * The function complex
 * The function polar
 
 It is also possible to [convert] between the two different representations.
 
 The distribution complex
-===
 
 A complex distribution with a Gaussian distributed real- and imaginary part can be defined as a basic model like follows: 
+
 ~~~~
 &lt;model name="Complex" targetid="s"&gt;
  &lt;model name="Complex" targetid="s"&gt;
   &lt;influence id="s" name="Complex"&gt;
     &lt;distribution id="c"&gt;
       &lt;complex&gt;
         &lt;realpart&gt;
           &lt;distribution&gt;
             &lt;gauss&gt;
               &lt;mu parameter="#111"&gt;1&lt;/mu&gt;
               &lt;sigma parameter="#112"&gt;1&lt;/sigma&gt;
             &lt;/gauss&gt;
           &lt;/distribution&gt;
         &lt;/realpart&gt;
         &lt;imaginarypart&gt;
           &lt;distribution&gt;
             &lt;gauss&gt;
               &lt;mu parameter="#113"&gt;1&lt;/mu&gt;
               &lt;sigma parameter="#114"&gt;1&lt;/sigma&gt;
             &lt;/gauss&gt;
           &lt;/distribution&gt;
         &lt;/imaginarypart&gt;  
       &lt;/complex&gt;
     &lt;/distribution&gt;
   &lt;/influence&gt;
 &lt;/model&gt;
 ~~~~
+
 By this definition the real part is Gaussian distributed with a mean value of 0 and a standard deviation of 1. The imaginary part has a mean of 1 with a standard deviation of 1. This distribution can now be used in the same way like other distributions. So we can define a inﬂuence in the initialization section by the statement 
 
     &lt;instance name="s1" model="complex"&gt;&lt;/instance&gt;
 
 and use it with all the given operators in the formula to calculate the uncertainty.
 
 Of course it is possible to use each [supported distribution](Distributions) instead of Gaussian distributions in the definition above. 
 
 Function complex
-===
+---
 (since version 0.6)
 
 A complex valued quantity can be defined using the function complex. This function returns the complex number which corresponds to a specified real and imaginary part in Cartesian form. For example we can take a Gaussian distribution with a mean of 1 and a standard deviation of 0.1 for the real part and the same one for the imaginary. This can be defined by the following simulation ﬁle.
+
 ~~~~
 &lt;simulation&gt;
   &lt;initialization&gt;
@@ -73,26 +75,28 @@
   &lt;/initialization&gt;
   &lt;calculation dimensions="-1"&gt;
     &lt;analyse mode="on" histbars="40" datafiles="delete"/&gt;
     &lt;uncertainty&gt; complex(_real,_imag) &lt;/uncertainty&gt;
   &lt;/calculation&gt;
 &lt;/simulation&gt;
 ~~~~
+
 Function polar
-===
+---
 (since version 0.6)
 
 A complex valued quantity can be defined using the function polar. This function returns the complex number which corresponds to a specified modulus and argument part in the polar form. For example we can take a Gaussian distribution with a mean of 1 and a standard deviation of 0.1 for the modulus part and a Gaussian distribution with a mean value of pi/4 and a standard deviation of 0.1 for the argument. This can be defined by the following simulation ﬁle.
+
 ~~~~
 &lt;simulation&gt;
   &lt;initialization&gt;
     &lt;instance name="_mod" model="gaussparam"&gt;
       &lt;parameters&gt;
         &lt;parameter id="#1"&gt;1&lt;/parameter&gt;
         &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
       &lt;/parameters&gt;
     &lt;/instance&gt;
     &lt;instance name="_arg" model="gaussparam"&gt;
       &lt;parameters&gt;
         &lt;parameter id="#1"&gt;pi/4&lt;/parameter&gt;
         &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
       &lt;/parameters&gt;
@@ -100,8 +104,9 @@
   &lt;/initialization&gt;
   &lt;calculation dimensions="-1"&gt;
     &lt;analyse mode="on" histbars="40" datafiles="delete"/&gt;
     &lt;uncertainty&gt; polar(_mod,_arg) &lt;/uncertainty&gt;
   &lt;/calculation&gt;
 &lt;/simulation&gt;
 ~~~~
+
 Beware that not all operations are defined in polar coordinates! [Here](Convertion of complex numbers) you can see how to convert between the two different representations of complex numbers.     
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Mueller</dc:creator><pubDate>Sun, 05 Jun 2011 06:52:27 -0000</pubDate><guid>https://sourceforge.netd500a43a41b0bd7d9613be5a18e37780d65d6db3</guid></item><item><title>&lt;pre&gt;--- v1 
+++ v2 
@@ -1,18 +1,18 @@
 Complex valued quantities
-===
-
+=====
+
 MUSE can represent complex valued quantities by the real and imaginary part as well as by an argument (angle) and a magnitude (absolut value or modulus).
 
 A complex valued quantity can therefore be described by a two dimensional PDF where one marginal distribution defines the real and the other one the imaginary part. If x is a complex valued quantity re(x) defines the PDF of the real part and im(x) the PDF of the imaginary part of x. MUSE provides three ways to define a complex valued quantity.
 
 * The distribution complex
 * The function complex
 * The function polar
 
 It is also possible to [convert] between the two different representations.
 
 The distribution complex
-====
+===
 
 A complex distribution with a Gaussian distributed real- and imaginary part can be defined as a basic model like follows: 
 ~~~~
&lt;/pre&gt;</title><link>https://sourceforge.net/p/freemuse/wiki/complex%2520valued%2520quantities/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -1,18 +1,18 @@
 Complex valued quantities
-===
-
+=====
+
 MUSE can represent complex valued quantities by the real and imaginary part as well as by an argument (angle) and a magnitude (absolut value or modulus).
 
 A complex valued quantity can therefore be described by a two dimensional PDF where one marginal distribution defines the real and the other one the imaginary part. If x is a complex valued quantity re(x) defines the PDF of the real part and im(x) the PDF of the imaginary part of x. MUSE provides three ways to define a complex valued quantity.
 
 * The distribution complex
 * The function complex
 * The function polar
 
 It is also possible to [convert] between the two different representations.
 
 The distribution complex
-====
+===
 
 A complex distribution with a Gaussian distributed real- and imaginary part can be defined as a basic model like follows: 
 ~~~~
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Mueller</dc:creator><pubDate>Sun, 05 Jun 2011 06:41:48 -0000</pubDate><guid>https://sourceforge.net6d1143c27284303b33fe55e3a1e15ead90f349c2</guid></item><item><title>Complex valued quantities
===

MUSE can represent complex valued quantities by the real and imaginary part as well as by an argument (angle) and a magnitude (absolut value or modulus).

A complex valued quantity can therefore be described by a two dimensional PDF where one marginal distribution defines the real and the other one the imaginary part. If x is a complex valued quantity re(x) defines the PDF of the real part and im(x) the PDF of the imaginary part of x. MUSE provides three ways to define a complex valued quantity.

* The distribution complex
* The function complex
* The function polar

It is also possible to [convert] between the two different representations.

The distribution complex
====

A complex distribution with a Gaussian distributed real- and imaginary part can be defined as a basic model like follows: 
~~~~
&lt;model name="Complex" targetid="s"&gt;
 &lt;model name="Complex" targetid="s"&gt;
  &lt;influence id="s" name="Complex"&gt;
    &lt;distribution id="c"&gt;
      &lt;complex&gt;
        &lt;realpart&gt;
          &lt;distribution&gt;
            &lt;gauss&gt;
              &lt;mu parameter="#111"&gt;1&lt;/mu&gt;
              &lt;sigma parameter="#112"&gt;1&lt;/sigma&gt;
            &lt;/gauss&gt;
          &lt;/distribution&gt;
        &lt;/realpart&gt;
        &lt;imaginarypart&gt;
          &lt;distribution&gt;
            &lt;gauss&gt;
              &lt;mu parameter="#113"&gt;1&lt;/mu&gt;
              &lt;sigma parameter="#114"&gt;1&lt;/sigma&gt;
            &lt;/gauss&gt;
          &lt;/distribution&gt;
        &lt;/imaginarypart&gt;  
      &lt;/complex&gt;
    &lt;/distribution&gt;
  &lt;/influence&gt;
&lt;/model&gt;
~~~~
By this definition the real part is Gaussian distributed with a mean value of 0 and a standard deviation of 1. The imaginary part has a mean of 1 with a standard deviation of 1. This distribution can now be used in the same way like other distributions. So we can define a inﬂuence in the initialization section by the statement 

    &lt;instance name="s1" model="complex"&gt;&lt;/instance&gt;

and use it with all the given operators in the formula to calculate the uncertainty.

Of course it is possible to use each [supported distribution](Distributions) instead of Gaussian distributions in the definition above. 

Function complex
===
(since version 0.6)

A complex valued quantity can be defined using the function complex. This function returns the complex number which corresponds to a specified real and imaginary part in Cartesian form. For example we can take a Gaussian distribution with a mean of 1 and a standard deviation of 0.1 for the real part and the same one for the imaginary. This can be defined by the following simulation ﬁle.
~~~~
&lt;simulation&gt;
  &lt;initialization&gt;
    &lt;instance name="_real" model="gaussparam"&gt;
      &lt;parameters&gt;
        &lt;parameter id="#1"&gt;1&lt;/parameter&gt;
        &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
      &lt;/parameters&gt;
    &lt;/instance&gt;
    &lt;instance name="_real" model="gaussparam"&gt;
      &lt;parameters&gt;
        &lt;parameter id="#1"&gt;1&lt;/parameter&gt;
        &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
      &lt;/parameters&gt;
    &lt;/instance&gt;
  &lt;/initialization&gt;
  &lt;calculation dimensions="-1"&gt;
    &lt;analyse mode="on" histbars="40" datafiles="delete"/&gt;
    &lt;uncertainty&gt; complex(_real,_imag) &lt;/uncertainty&gt;
  &lt;/calculation&gt;
&lt;/simulation&gt;
~~~~
Function polar
===
(since version 0.6)

A complex valued quantity can be defined using the function polar. This function returns the complex number which corresponds to a specified modulus and argument part in the polar form. For example we can take a Gaussian distribution with a mean of 1 and a standard deviation of 0.1 for the modulus part and a Gaussian distribution with a mean value of pi/4 and a standard deviation of 0.1 for the argument. This can be defined by the following simulation ﬁle.
~~~~
&lt;simulation&gt;
  &lt;initialization&gt;
    &lt;instance name="_mod" model="gaussparam"&gt;
      &lt;parameters&gt;
        &lt;parameter id="#1"&gt;1&lt;/parameter&gt;
        &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
      &lt;/parameters&gt;
    &lt;/instance&gt;
    &lt;instance name="_arg" model="gaussparam"&gt;
      &lt;parameters&gt;
        &lt;parameter id="#1"&gt;pi/4&lt;/parameter&gt;
        &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
      &lt;/parameters&gt;
    &lt;/instance&gt;
  &lt;/initialization&gt;
  &lt;calculation dimensions="-1"&gt;
    &lt;analyse mode="on" histbars="40" datafiles="delete"/&gt;
    &lt;uncertainty&gt; polar(_mod,_arg) &lt;/uncertainty&gt;
  &lt;/calculation&gt;
&lt;/simulation&gt;
~~~~
Beware that not all operations are defined in polar coordinates! [Here](Convertion of complex numbers) you can see how to convert between the two different representations of complex numbers.     </title><link>https://sourceforge.net/p/freemuse/wiki/complex%2520valued%2520quantities/</link><description>Complex valued quantities
===

MUSE can represent complex valued quantities by the real and imaginary part as well as by an argument (angle) and a magnitude (absolut value or modulus).

A complex valued quantity can therefore be described by a two dimensional PDF where one marginal distribution defines the real and the other one the imaginary part. If x is a complex valued quantity re(x) defines the PDF of the real part and im(x) the PDF of the imaginary part of x. MUSE provides three ways to define a complex valued quantity.

* The distribution complex
* The function complex
* The function polar

It is also possible to [convert] between the two different representations.

The distribution complex
====

A complex distribution with a Gaussian distributed real- and imaginary part can be defined as a basic model like follows: 
~~~~
&lt;model name="Complex" targetid="s"&gt;
 &lt;model name="Complex" targetid="s"&gt;
  &lt;influence id="s" name="Complex"&gt;
    &lt;distribution id="c"&gt;
      &lt;complex&gt;
        &lt;realpart&gt;
          &lt;distribution&gt;
            &lt;gauss&gt;
              &lt;mu parameter="#111"&gt;1&lt;/mu&gt;
              &lt;sigma parameter="#112"&gt;1&lt;/sigma&gt;
            &lt;/gauss&gt;
          &lt;/distribution&gt;
        &lt;/realpart&gt;
        &lt;imaginarypart&gt;
          &lt;distribution&gt;
            &lt;gauss&gt;
              &lt;mu parameter="#113"&gt;1&lt;/mu&gt;
              &lt;sigma parameter="#114"&gt;1&lt;/sigma&gt;
            &lt;/gauss&gt;
          &lt;/distribution&gt;
        &lt;/imaginarypart&gt;  
      &lt;/complex&gt;
    &lt;/distribution&gt;
  &lt;/influence&gt;
&lt;/model&gt;
~~~~
By this definition the real part is Gaussian distributed with a mean value of 0 and a standard deviation of 1. The imaginary part has a mean of 1 with a standard deviation of 1. This distribution can now be used in the same way like other distributions. So we can define a inﬂuence in the initialization section by the statement 

    &lt;instance name="s1" model="complex"&gt;&lt;/instance&gt;

and use it with all the given operators in the formula to calculate the uncertainty.

Of course it is possible to use each [supported distribution](Distributions) instead of Gaussian distributions in the definition above. 

Function complex
===
(since version 0.6)

A complex valued quantity can be defined using the function complex. This function returns the complex number which corresponds to a specified real and imaginary part in Cartesian form. For example we can take a Gaussian distribution with a mean of 1 and a standard deviation of 0.1 for the real part and the same one for the imaginary. This can be defined by the following simulation ﬁle.
~~~~
&lt;simulation&gt;
  &lt;initialization&gt;
    &lt;instance name="_real" model="gaussparam"&gt;
      &lt;parameters&gt;
        &lt;parameter id="#1"&gt;1&lt;/parameter&gt;
        &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
      &lt;/parameters&gt;
    &lt;/instance&gt;
    &lt;instance name="_real" model="gaussparam"&gt;
      &lt;parameters&gt;
        &lt;parameter id="#1"&gt;1&lt;/parameter&gt;
        &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
      &lt;/parameters&gt;
    &lt;/instance&gt;
  &lt;/initialization&gt;
  &lt;calculation dimensions="-1"&gt;
    &lt;analyse mode="on" histbars="40" datafiles="delete"/&gt;
    &lt;uncertainty&gt; complex(_real,_imag) &lt;/uncertainty&gt;
  &lt;/calculation&gt;
&lt;/simulation&gt;
~~~~
Function polar
===
(since version 0.6)

A complex valued quantity can be defined using the function polar. This function returns the complex number which corresponds to a specified modulus and argument part in the polar form. For example we can take a Gaussian distribution with a mean of 1 and a standard deviation of 0.1 for the modulus part and a Gaussian distribution with a mean value of pi/4 and a standard deviation of 0.1 for the argument. This can be defined by the following simulation ﬁle.
~~~~
&lt;simulation&gt;
  &lt;initialization&gt;
    &lt;instance name="_mod" model="gaussparam"&gt;
      &lt;parameters&gt;
        &lt;parameter id="#1"&gt;1&lt;/parameter&gt;
        &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
      &lt;/parameters&gt;
    &lt;/instance&gt;
    &lt;instance name="_arg" model="gaussparam"&gt;
      &lt;parameters&gt;
        &lt;parameter id="#1"&gt;pi/4&lt;/parameter&gt;
        &lt;parameter id="#2"&gt;.1&lt;/parameter&gt;
      &lt;/parameters&gt;
    &lt;/instance&gt;
  &lt;/initialization&gt;
  &lt;calculation dimensions="-1"&gt;
    &lt;analyse mode="on" histbars="40" datafiles="delete"/&gt;
    &lt;uncertainty&gt; polar(_mod,_arg) &lt;/uncertainty&gt;
  &lt;/calculation&gt;
&lt;/simulation&gt;
~~~~
Beware that not all operations are defined in polar coordinates! [Here](Convertion of complex numbers) you can see how to convert between the two different representations of complex numbers.     </description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martin Mueller</dc:creator><pubDate>Sun, 05 Jun 2011 06:39:29 -0000</pubDate><guid>https://sourceforge.netacae446bc8e990b86e8d257cf7e51d7daaba05ba</guid></item></channel></rss>