Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add complex number Vector support #14

Merged
merged 29 commits into from
Dec 18, 2021
Merged

Add complex number Vector support #14

merged 29 commits into from
Dec 18, 2021

Conversation

chrissimpkins
Copy link
Owner

@chrissimpkins chrissimpkins commented Dec 16, 2021

Closes #4
Closes #15
Closes #16
Closes #17
Closes #18
Closes #19
Closes #21

New impl required

  • PartialEq trait for complex numbers with integer real and imaginary parts (58f32e1)
  • PartialEq trait for complex numbers with floating point real and imaginary parts (3bd3407)
  • AbsDiffEq trait for complex numbers with floating point real and imaginary parts (16d33f1)
  • RelativeEq trait for complex numbers with floating point real and imaginary parts (35ebe96)
  • UlpsEq trait for complex numbers with floating point real and imaginary parts (caa47e6)
  • From trait support for lossless complex number type Vector real and imaginary part type casts (99005f7)

Changed impl required

  • Unary negation Neg trait support for additive inverse of complex numbers (1760f95)

@chrissimpkins chrissimpkins changed the title Add complex number support Add complex number Vector support Dec 16, 2021
…should not be used with Vector *of* complex number types
…icate that these are intended for Vector of real, float types
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment