diff --git a/src/Managed/Complex.cs b/src/Managed/Complex.cs
index 73ae18c1..a24a0345 100644
--- a/src/Managed/Complex.cs
+++ b/src/Managed/Complex.cs
@@ -298,7 +298,7 @@ namespace MathNet.Numerics
/// The value for the real component.
/// The value for the imaginary component.
/// A new Complex with the given values.
- public static Complex FromRealImaginary(double real, double imaginary)
+ public static Complex WithRealImaginary(double real, double imaginary)
{
return new Complex(real, imaginary);
}
@@ -310,7 +310,7 @@ namespace MathNet.Numerics
/// Must be non-negative.
/// Real number.
/// A new Complex from the given values.
- public static Complex FromModulusArgument(double modulus, double argument)
+ public static Complex WithModulusArgument(double modulus, double argument)
{
if (modulus < 0.0)
{