complex-stuff

Crates.iocomplex-stuff
lib.rscomplex-stuff
version1.0.0
sourcesrc
created_at2024-02-08 08:42:54.936188
updated_at2024-02-08 08:42:54.936188
descriptionA library for working with complex numbers in rust
homepage
repositoryhttps://github.com/jon5th5n/complex-stuff
max_upload_size
id1131866
size19,101
Jonathan Kappler (jon5th5n)

documentation

README

complex-stuff

complex-stuff is a collection of utilities to make calculations with complex numbers easy.

Examples

use complex_stuff::{Complex, ComplexCartesian, ComplexPolar};
use std::f64::consts::PI;

// Some of the most important operations:
fn main() {
    // Declare complex numbers with their cartesian or polar form.
    let c1 = Complex::new_cartesian(5.0, 3.0);
    let c2 = Complex::new_polar(7.0, PI / 4.0);

    // Basic arethmetic operations should work as expected.
    let sum = c1 + c2;
    let diff = c1 - c2;

    let prod = c1 * c2;

    // All operations which can result in undefined or infinite values
    // return a `Option` and need to be handled.

    let quot = (c1 / c2)?;

    let sqr = c1.pow(Complex::new_real(2.0))?;
    let sqrt = c1.root(Complex::new_real(2.0))?;

    let log10 = c1.log(Complex::new_real(10.0))?;

    let sin = c1.sin()?;
    let cos = c1.cos()?;
}

License: MIT

Commit count: 0

cargo fmt