ccomplex 0.1.0

Easy to use complex numbers
Documentation
  • Coverage
  • 22.22%
    2 out of 9 items documented0 out of 6 items with examples
  • Size
  • Source code size: 7.83 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.72 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • malmz/ccomplex-rs
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Malmz

CComplex-rs

A easy to use library for complex numbers.

CComplex makes complex calculations easy to type.

extern crate ccomplex;
use ccomplex::iprimitive::I;

let z = 5.0 + I(4.0) / 5.0 - I(6.0) * 4.0;
println!("{}", z);

Prints: 5-23.2i