lab week 5 Flashcards

1
Q

construct a complex number in Python

A

num = complex(a, b) or num = a + bj

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

how to get the angle of the complex number in degrees, not radians?

A

np.degrees(np.angle(complex_num))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

create the conjugate of pointB

A

np.conj(pointB)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

extract the real component from the complex number in Python

A

np.real( num )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Euler’s formula

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

magnitude vs Euler’s formula

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Fourier coefficient in general

A

the output of the Fourier transform

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Fourier coefficient vs Euler’s formula

A

abs(complex) = magnitude

angle(complex) = phase

Fourier components are complex numbers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

all cosines are in-phase - how would this look like? what does it mean?

A

they all start at 1. At some time point, they are all 1 again. This occurs at 1s.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly