Complexible is a minimal and user-friendly Rust library for complex-number operations, bringing the joy of complex mathematics to Rustaceans everywhere! Designed with simplicity and ease-of-use in mind, Complexible offers a range of functionality to help you work with complex numbers in your Rust projects.
CartesianComplexNumber
) and polar (PolarComplexNumber
) formsAngle
, Radian
, and Degree
structsAdd Complexible to your Cargo.toml:
[dependencies]
complexible = "0.2.0"
Here's a quick example to get you started:
``` use complexible::complex_numbers::*;
fn main() { let a = ComplexNumber::fromcartesian(3.0, 4.0); let b = ComplexNumber::frompolar(5.0, 0.927);
let sum = a + b;
let product = a * b;
println!("Sum: {}", sum);
println!("Product: {}", product);
} ``` For more examples and detailed documentation, please refer to the API documentation.
We welcome contributions! If you'd like to help improve Complexible, feel free to submit a pull request on GitHub. Please make sure to follow the existing coding style and add tests for any new features or bug fixes.
Complexible is released under the MIT license.