Skip to content

Commit

Permalink
add complex num utils header
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamPorcineFudgepuppy committed Jun 19, 2024
1 parent bc224e7 commit 734ed01
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/complexNumberUtils.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#pragma once

// R^N->C^N
// create


// R->C^N


// C^N -> R^N
// Re(z), Im(z), |z|, Arg(z)



// C^N -> C^N
// add, subtract, divide, multiply
// 1-z
// 1/z
// conjugate z*
// z^p
// (1-z)^p


// C^N -> C
// sum
// average
// product

// C^N -> R
// sum of square modulus

0 comments on commit 734ed01

Please sign in to comment.