1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/******************************************************************************
 * Copyright 2019 Manuel Simon
 * This file is part of the norman library.
 *
 * Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
 * https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
 * <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
 * option. This file may not be copied, modified, or distributed
 * except according to those terms.
 *****************************************************************************/

//! Implementations of norms for the complex number types in [`num_complex`].

use num_traits::Float;
use num_complex::Complex;

use crate::{Norm, Distance};
use crate::desc::{Abs, Sup};

impl<T: Float> Norm<Abs> for Complex<T> {
    type Output = T;
    /// Calculates the usual euclidean norm of the complex number.
    fn norm(&self, _desc: Abs) -> T {
        Complex::norm(&self)
    }
}

impl<T: Float> Norm<Sup> for Complex<T> {
    type Output = T;
    /// Calculates the supremum norm of the complex number,
    /// i.e. the maximum of the absolute values of real and imaginary part.
    fn norm(&self, _desc: Sup) -> T {
        self.re.abs().max(self.im.abs())
    }
}

impl<T: Float> Distance<Abs> for Complex<T> {
    type Output = T;
    /// Calculates the usual euclidean norm of the complex number.
    fn distance(&self, other: &Self, _desc: Abs) -> T {
        Complex::norm(&(self - other))
    }
}

impl<T: Float> Distance<Sup> for Complex<T> {
    type Output = T;
    /// Calculates the supremum norm of the complex number,
    /// i.e. the maximum of the absolute values of real and imaginary part.
    fn distance(&self, other: &Self, _desc: Sup) -> T {
        (self.re - other.re).abs().max((self.im - other.im).abs())
    }
}

#[cfg(test)]
mod tests {
    use num_complex::Complex;

    use crate::{Norm, Distance};
    use crate::desc::{Abs, Sup};

    #[test]
    fn complex_norm() {
        assert_eq!(Norm::norm(&Complex::new( 3.0f32, -4.0f32), Abs::new()), 5.0);
        assert_eq!(Norm::norm(&Complex::new(-4.0f64, -3.0f64), Abs::new()), 5.0);
    }

    #[test]
    fn complex_sup_norm() {
        assert_eq!(Norm::norm(&Complex::new( 4.0f32, -8.0f32), Sup::new()), 8.0);
        assert_eq!(Norm::norm(&Complex::new( 3.0f32, -1.0f32), Sup::new()), 3.0);
    }

    #[test]
    fn complex_distance() {
        assert_eq!(Distance::distance(
            &Complex::new( 3.0f32, -4.0f32),
            &Complex::new( 3.0f32,  3.0f32),
            Abs::new()
            ), 7.0);
        assert_eq!(Distance::distance(
            &Complex::new( 5.0f32,  0.0f32),
            &Complex::new( 1.0f32,  3.0f32),
            Abs::new()
            ), 5.0);
    }
}