This commit is contained in:
2025-09-17 22:09:22 +02:00
parent 20cac4cb60
commit 1392fe02bb
5 changed files with 1337 additions and 20 deletions

90
src/complex.rs Normal file
View File

@ -0,0 +1,90 @@
use std::{fmt::Display, ops::{Add, Div, Mul, Neg, Sub}};
#[derive(Copy, Clone, Debug)]
pub struct Complex<T>
{
pub re: T,
pub im: T
}
impl<T> Complex<T>
{
pub fn new(re: T, im: T) -> Self
{
Complex { re, im }
}
}
impl<T: Clone + Add<Output = T>> Add<Complex<T>> for Complex<T>
{
type Output = Complex<T>;
#[inline]
fn add(self, rhs: Self) -> Self::Output {
Self::new(self.re + rhs.re, self.im + rhs.im)
}
}
impl<T: Clone + Sub<Output = T>> Sub<Complex<T>> for Complex<T>
{
type Output = Complex<T>;
#[inline]
fn sub(self, rhs: Self) -> Self::Output {
Self::new(self.re - rhs.re, self.im - rhs.im)
}
}
impl<T: Clone + Add<Output = T>> Add<T> for Complex<T>
{
type Output = Complex<T>;
#[inline]
fn add(self, rhs: T) -> Self::Output {
Self::new(self.re + rhs, self.im)
}
}
impl<T: Clone + Add<Output = T> + Mul<Output = T> + Sub<Output = T>> Mul<Complex<T>> for Complex<T>
{
type Output = Complex<T>;
#[inline]
fn mul(self, rhs: Complex<T>) -> Self::Output {
self::Complex::new(self.re.clone() * rhs.re.clone() - self.im.clone() * rhs.im.clone(), self.re * rhs.im + self.im * rhs.re)
}
}
impl<T: Clone + Mul<Output = T>> Mul<T> for Complex<T>
{
type Output = Complex<T>;
#[inline]
fn mul(self, rhs: T) -> Self::Output {
self::Complex::new(self.re * rhs.clone(), self.im * rhs)
}
}
impl<T: Clone + Neg<Output = T>> Neg for Complex<T>
{
type Output = Complex<T>;
fn neg(self) -> Self::Output {
Self::new(-self.re.clone(), -self.im.clone())
}
}
impl<T: Clone + Neg<Output = T>> Complex<T>
{
pub fn conj(&self) -> Complex<T>
{
Self::new(self.re.clone(), -self.im.clone())
}
}
impl<T: Display> Display for Complex<T>
{
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{} + i{}", self.re, self.im)
}
}