-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComplex.cs
65 lines (53 loc) · 1.6 KB
/
Complex.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
public class Complex
{
public int Real { get; }
public int Imaginary { get; }
public double Modulus => Math.Sqrt(Real * Real + Imaginary * Imaginary);
public double Argument => Math.Atan2(Imaginary, Real);
public static Complex Zero => new Complex(0, 0);
public Complex(int real, int imaginary)
{
Real = real;
Imaginary = imaginary;
}
public override string ToString()
{
return $"({Real}, {Imaginary})";
}
public static Complex operator +(Complex a, Complex b)
{
return new Complex(a.Real + b.Real, a.Imaginary + b.Imaginary);
}
public static Complex operator -(Complex a, Complex b)
{
return new Complex(a.Real - b.Real, a.Imaginary - b.Imaginary);
}
public static Complex operator *(Complex a, Complex b)
{
return new Complex(a.Real * b.Real - a.Imaginary * b.Imaginary, a.Real * b.Imaginary + a.Imaginary * b.Real);
}
public static Complex operator -(Complex operand)
{
return new Complex(-operand.Real, -operand.Imaginary);
}
public static bool operator ==(Complex a, Complex b)
{
return a.Real == b.Real && a.Imaginary == b.Imaginary;
}
public static bool operator !=(Complex a, Complex b)
{
return !(a == b);
}
// public override bool Equals(object? obj) // Make obj nullable
// {
// if (obj is Complex other)
// {
// return this == other;
// }
// return false;
// }
// public override int GetHashCode()
// {
// return HashCode.Combine(Real, Imaginary);
// }
}