-
Notifications
You must be signed in to change notification settings - Fork 0
Subtraction of double with Complex has wrong output #400
Copy link
Copy link
Open
Labels
Description
What steps will reproduce the problem?
1.
2.
3.
What is the expected output? What do you see instead?
Following function (in AForge.Math.Complex):
public static Complex Subtract( double s, Complex a )
{
return new Complex( s - a.Re, a.Im );
}
The return value contains an error. The imaginary part should also be negated:
public static Complex Subtract( double s, Complex a )
{
return new Complex( s - a.Re, - a.Im );
}
What version of the product are you using?
2.2.5
Please provide any additional information below.
Original issue reported on code.google.com by rob.bier...@gmail.com on 8 Mar 2015 at 8:26
Reactions are currently unavailable