<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1539,7 +1539,11 @@ namespace MathNet.Numerics
         /// &lt;returns&gt;The logarithm of value in base baseValue.&lt;/returns&gt;
         public static Complex Log(Complex value, double baseValue)
         {
-            throw new NotImplementedException();
+            if( baseValue == 1.0)
+            {
+                return double.NaN;
+            }
+            return value.NaturalLogarithm() / Math.Log(baseValue, Math.E);
         }
 
         /// &lt;summary&gt;</diff>
      <filename>src/Numerics/Complex.cs</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c835adba9e163483efaf4ee549ae869888e31943</id>
    </parent>
  </parents>
  <author>
    <name>Marcus Cuda</name>
    <email>marcus@cuda.net</email>
  </author>
  <url>http://github.com/cuda/mathnet-numerics/commit/e6c8f4626c362119f827684866804fa04bc54590</url>
  <id>e6c8f4626c362119f827684866804fa04bc54590</id>
  <committed-date>2009-10-31T22:33:49-07:00</committed-date>
  <authored-date>2009-10-31T21:59:25-07:00</authored-date>
  <message>added simple log impl</message>
  <tree>76f2f87c3f747b7a898e9915146c32d0a8a829bb</tree>
  <committer>
    <name>Marcus Cuda</name>
    <email>marcus@cuda.net</email>
  </committer>
</commit>
