You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
rob.bier...@gmail.com
on 8 Mar 2015 at 8:26The text was updated successfully, but these errors were encountered: