complex-stuff 1.0.0

A library for working with complex numbers in rust
Documentation
  • Coverage
  • 87.5%
    28 out of 32 items documented19 out of 28 items with examples
  • Size
  • Source code size: 18.77 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.53 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • jon5th5n/complex-stuff
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • jon5th5n

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