mathhook-core 0.2.0

Core mathematical engine for MathHook - expressions, algebra, and solving
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Complex number operations and arithmetic
//!
//! Handles symbolic complex numbers with Expression-based real and imaginary parts.
//! Provides comprehensive complex arithmetic including addition, multiplication,
//! division, conjugation, and polar form conversions.
//!
//! This module is organized into:
//! - `operations`: ComplexOperations trait with arithmetic operations
//! - `arithmetic`: Convenience methods for complex number manipulation

mod arithmetic;
mod operations;

pub use operations::ComplexOperations;