Altair Compose: Signal Processing - Power Spectral Density

Altair HyperWorks How-To
16 Jan 202316:57

Summary

TLDRThis lecture introduces power spectral density (PSD) and its computation using the Discrete Fourier Transform (DFT) and the Welch method, which offers a robust way to estimate PSD in noisy signals. The lecture explains how PSD represents the distribution of signal power across frequencies and provides formulas to calculate both single-sided and double-sided PSDs. It also covers signal processing challenges like noise and frequency resolution, and demonstrates how the Welch method mitigates these issues through segmentation and overlapping. Finally, it shows practical PSD calculation using Compose, emphasizing key advantages and trade-offs.

Takeaways

  • 📊 The lecture introduces Power Spectral Density (PSD), a method to represent the power of a signal distributed over a frequency spectrum.
  • 📐 PSD is calculated by dividing the spectral power by the frequency range, often using the Discrete Fourier Transform (DFT) or Fast Fourier Transform (FFT).
  • 🎛️ The difference between double-sided and single-sided PSDs is explained, with single-sided PSD requiring a folding process of the double-sided PSD.
  • 💡 The Welsh method is introduced as a more robust algorithm for estimating PSD, useful for handling noisy or non-deterministic signals.
  • 📈 The Welsh method divides a signal into overlapping segments, applies a window function, computes FFTs, and averages the PSDs to provide a more accurate representation.
  • 🔄 Overlapping segments in the Welsh method ensure no loss of critical information that might occur at the edges of windows in the signal.
  • 🧮 The lecture emphasizes that PSD is a density measurement, meaning it is normalized by frequency resolution, which is crucial for interpreting the results.
  • ⚖️ It highlights the trade-off in using the Welsh method: while it reduces noise, it also lowers frequency resolution.
  • 🔧 The practical implementation of PSD computation is shown using the Compose tool, leveraging built-in functions such as 'P Welch' to simplify the process.
  • 🎮 The provided app allows users to experiment with different parameters (e.g., window type, overlap, window length) to visualize their effects on the PSD and signal.

Q & A

  • What is Power Spectral Density (PSD)?

    -Power Spectral Density (PSD) represents the power of a signal distributed over its spectrum of frequencies. It describes how the power of a signal varies with frequency and is defined as power per unit frequency.

  • How is the Power Spectral Density (PSD) computed using the Discrete Fourier Transform (DFT)?

    -The PSD is computed by squaring the Discrete Fourier Transform (DFT) coefficients and then dividing by the number of coefficients to get the spectral power. The spectral power is then divided by the frequency range, which for a double-sided DFT, is the sampling frequency.

  • What is the difference between single-sided and double-sided PSD?

    -Double-sided PSD considers both positive and negative frequencies, while single-sided PSD focuses only on positive frequencies. The single-sided PSD is computed by folding the double-sided PSD and doubling the values, except for the mean and Nyquist frequency components.

  • What is the Parseval’s Theorem and how is it related to PSD?

    -Parseval’s Theorem states that the total energy of a signal can be computed equivalently in time or frequency domains. In the context of PSD, it implies that the sum of power in the time domain can be represented as the sum of spectral power in the frequency domain.

  • What are the advantages of the Welch method for PSD estimation?

    -The Welch method improves PSD estimation by averaging over multiple segments of a signal, which reduces noise and provides a better representation of the signal’s power spectrum. It also helps in estimating the PSD for non-deterministic processes.

  • Why is it important to use windowing in the Welch method?

    -Windowing helps reduce spectral leakage by minimizing the discontinuities at the edges of each segment. This allows for a more accurate estimation of the PSD, especially when dealing with overlapping segments in the Welch method.

  • How does the overlap of segments affect the Welch method?

    -Overlapping segments in the Welch method increases the usage of signal data, especially at the edges where the window function reduces the signal's impact. This leads to a more efficient use of the signal and provides a better estimate of the PSD.

  • What are the effects of noise on PSD computation?

    -Noise affects the accuracy of PSD computation by introducing additional power across the frequency spectrum. Averaging multiple segments in the Welch method helps reduce the impact of noise and provides a more robust estimate of the true PSD.

  • How does the length of the FFT affect the PSD resolution?

    -The length of the FFT determines the frequency resolution of the PSD. A longer FFT provides finer frequency resolution but may require zero-padding if the signal length is shorter. A shorter FFT reduces resolution but may be faster to compute.

  • What are some common applications of PSD analysis?

    -PSD analysis is used in signal processing to identify the frequency components of a signal, detect noise levels, and analyze random processes. It is commonly applied in fields such as telecommunications, audio processing, and vibration analysis.

Outlines

00:00

📊 Introduction to Power Spectral Density (PSD)

The video introduces Power Spectral Density (PSD), explaining that the lecture is divided into two parts. The first part covers the definition of PSD and how to calculate it using the Discrete Fourier Transform (DFT). The second part explores the Welsh method, a more robust way to compute PSD. The speaker defines PSD by breaking down its components: 'Power' refers to the signal's power, 'Spectral' refers to its distribution over frequencies, and 'Density' refers to power per unit frequency. A mathematical approach is provided to compute PSD using DFT coefficients, which are derived from the FFT algorithm. The explanation covers double-sided and single-sided PSD, and practical exercises in COMPOSE to illustrate the calculation.

05:02

📉 Why We Need the Welsh Method for PSD

This section discusses the limitations of the basic PSD computation in real-world scenarios. The speaker points out that signals are often noisy, and that PSD is typically used to analyze non-deterministic processes. To get a reliable estimate of PSD despite noise and randomness, averaging techniques like the Welsh method are useful. The Welsh method involves splitting the signal into segments, applying a window function, computing the FFT, and averaging the resulting PSDs. The key improvement in the Welsh method is using overlapping segments to avoid missing important information in the edges of the signal, thereby increasing efficiency and accuracy.

10:03

⚙️ Implementing the Welsh Method in COMPOSE

The third paragraph walks through the practical implementation of the Welsh method using the COMPOSE software. The Welsh function (pwelch) is introduced, with its various input parameters such as signal, window type, overlap, FFT length, and sampling frequency. A detailed explanation is provided on how to set the window length, define overlap (set at 50%), and adjust the FFT length. The paragraph also highlights how the Welsh method normalizes the signal, and that changing input arguments (e.g., window type or overlap) can influence the resulting PSD.

15:06

🖥️ Visualizing PSD and the Impact of Overlap

This paragraph discusses an interactive app for visualizing the PSD of a signal, showing how different parameters affect the results. The app allows users to adjust signal components (e.g., amplitudes, frequencies) and analyze how splitting, windowing, and overlapping impact the PSD. It illustrates how using an overlap of 50% makes short-duration signals, which would otherwise be lost, more visible in the PSD. The section concludes by emphasizing the importance of choosing the right overlap and window type for an accurate PSD representation.

Mindmap

Keywords

💡Power Spectral Density (PSD)

Power Spectral Density (PSD) represents how the power of a signal is distributed across different frequencies. In the video, PSD is the main focus, introduced as a method to visualize the power of a signal in relation to its frequency components. It is derived from the Discrete Fourier Transform (DFT) and is crucial for understanding signal behavior in the frequency domain.

💡Discrete Fourier Transform (DFT)

The Discrete Fourier Transform (DFT) converts a signal from its time domain representation to a frequency domain representation. The video explains how DFT helps in computing the power spectral density of a signal by providing the frequency components. The Fast Fourier Transform (FFT), a common algorithm for computing DFT, is used in examples throughout the lecture.

💡Welch Method

The Welch Method is a more robust approach for estimating the power spectral density of a signal, especially in the presence of noise or for non-deterministic signals. In the video, it is explained as a technique that averages the PSD over several segments of the signal, enhancing the accuracy of the estimation. The method also involves overlapping segments to preserve data at the edges of the windows.

💡Frequency Resolution

Frequency resolution refers to the ability to distinguish between different frequency components in a signal. The video highlights how frequency resolution decreases when a signal is split into multiple segments for the Welch Method, leading to trade-offs between signal length and resolution. This concept is key in understanding the limitations and advantages of PSD estimation techniques.

💡Windowing Function

A windowing function is applied to each segment of a signal in the Welch Method to reduce spectral leakage. The video explains how different windows (e.g., rectangular, Hanning) affect the resulting PSD by minimizing distortions at the edges of the signal segments. Choosing the right window is crucial for accurate PSD estimation.

💡Leakage

Leakage refers to the spreading of signal energy across multiple frequency bins, which occurs when the frequency components do not align perfectly with the FFT bins. In the video, this phenomenon is described in the context of PSD estimation, particularly when non-ideal windows are used or when frequency resolution is too low. The Welch Method helps reduce leakage by overlapping windows.

💡Sampling Frequency

The sampling frequency is the rate at which a continuous signal is sampled to convert it into a discrete form. The video discusses how the sampling frequency affects the computation of the PSD, as it determines the range of frequencies that can be represented. The formula for PSD involves dividing by the sampling frequency to normalize the spectral power.

💡FFT Algorithm

The Fast Fourier Transform (FFT) algorithm is an efficient way to compute the Discrete Fourier Transform (DFT). In the video, FFT is used to calculate the frequency components of signals, which are then used to derive the power spectral density. The efficiency of FFT is crucial for handling large datasets in signal processing applications.

💡Single-Sided Power Spectral Density

The single-sided power spectral density is obtained by folding the double-sided PSD, focusing only on the positive frequencies. The video demonstrates how to calculate it from the FFT and emphasizes its utility in cases where only positive frequency components are of interest, such as in real-valued signals.

💡Averaging

Averaging is the process of combining multiple estimates to reduce noise and obtain a more reliable PSD estimate. In the video, averaging is introduced as a key part of the Welch Method, where PSDs from different segments of the signal are averaged to produce a final estimate. This technique is essential when dealing with noisy or random signals.

Highlights

Introduction to power spectral density (PSD) and its importance in signal processing.

Explanation of the power spectral density as the power of a signal distributed over the spectrum of frequencies.

Detailed steps to compute the power spectral density using the Discrete Fourier Transform (DFT) and the Fast Fourier Transform (FFT).

Introduction of the Welch method, a more robust algorithm for calculating PSD, particularly when dealing with noisy signals or random processes.

Use of overlapping segments and window functions to improve PSD estimation and reduce leakage in the Welch method.

Explanation of single-sided and double-sided power spectral density and how to compute each using different formulas.

Hands-on approach to implementing PSD computation with the FFT algorithm and practical plotting of results.

Introduction to averaging multiple PSDs to get a more representative estimate of noisy or random signals.

Practical example of dividing a signal into overlapping segments and applying the FFT to each for more accurate PSD estimation.

Step-by-step process of implementing the Welch method in Compose, including code examples.

Introduction of random noise into the signal to simulate real-world conditions and demonstrate how noise affects PSD estimation.

Visualization and comparison of PSD results between regular FFT-based computation and the Welch method to highlight differences in frequency resolution and accuracy.

Explanation of how signal length and segment splitting affect the frequency resolution and power estimates in PSD calculations.

Exploration of different window types (e.g., rectangular, Hanning) and how they impact the accuracy of PSD in terms of reducing leakage.

Interactive app for experimenting with different PSD parameters, including window type, window length, overlap, and noise, to better understand the Welch method.

Transcripts

play00:02

Hello everybody welcome back to the

play00:04

signal processing playlist the main

play00:06

topic of this lecture is power spectral

play00:09

density

play00:11

we are going to divide the lecture in

play00:13

two parts in the first part we introduce

play00:15

the power spectral density and we will

play00:18

get a formula to compute it from the

play00:19

Discrete Fourier transform of our signal

play00:22

in the second part is that we will talk

play00:24

about the Welsh method which is a more

play00:27

robust algorithm to compute the power

play00:29

Spectrum density

play00:31

in order to better follow I understand

play00:33

this lecture it's helpful that you are

play00:35

familiar with Concepts such as the

play00:36

description transfer and the winery

play00:38

technique

play00:40

now we are ready to start

play00:42

the first question we have to answer is

play00:44

what is power spectral density

play00:47

we can get its definition by its name

play00:49

so the first word is power

play00:52

which means that we are representing the

play00:54

power of our signal

play00:55

the second war is spectral

play00:58

in fact the power of the signal is

play01:01

represented as a distribution over the

play01:02

spectrum of frequencies

play01:04

the third word is density

play01:07

because this power distribution is

play01:10

indeed a density

play01:12

when we talk about density we are

play01:14

usually thinking at mass per unit volume

play01:16

these times that we are referring to

play01:18

power per unit frequency

play01:22

so if we think at the script for a

play01:25

transform as a change of basis now with

play01:27

the power spectral density we are

play01:29

enriching our analysis with physical

play01:31

meaning which is the power of our signal

play01:34

distributed in each frequency band

play01:37

and the next question is how do we

play01:40

compute it

play01:42

in order to get it we can leverage the

play01:45

parts of a theorem

play01:46

the interpretation of this theorem is

play01:48

that the total energy of a signal can be

play01:51

computed equivalently by

play01:53

or semi Power per sample across time or

play01:56

summing the spectral power across

play01:58

frequency

play02:00

and for the script and signals it can be

play02:02

translated in mathematical language

play02:04

through this formula

play02:06

where the capital x stands for the

play02:09

coefficient of the Discrete Fourier

play02:11

transform

play02:12

which more practically is what we get

play02:15

from the fft algorithm

play02:18

we want to get the power spectral

play02:20

density so what we have to do is to

play02:22

divide the spectral Power by the

play02:24

frequency range we are spanning

play02:26

and for the double-sided discrete for a

play02:28

transform the width of this frequency

play02:31

range is the sampling frequency since we

play02:33

are going from minus half of the sample

play02:36

frequencies to half of the sampler

play02:38

frequency

play02:40

and this is the formula for the

play02:42

double-sided power spectral density

play02:45

to get the single-sided power spectral

play02:47

density we just need to fold it

play02:49

and we will see how to do that in

play02:51

compose

play02:54

it can happen though that your

play02:55

colleagues or friends give you the

play02:58

single-sided and normalized descriptor

play03:00

transform

play03:01

in this case this is the format to

play03:03

compute the single-sided power Spectrum

play03:05

density and this formula can be obtained

play03:08

just manipulating the one we have found

play03:10

before

play03:12

also here we can see that we are

play03:14

Computing a power density since we are

play03:17

dividing by a frequency

play03:19

now let's get some practice with this

play03:21

formulas in compose

play03:25

first of all let's define the sampling

play03:27

frequency and the time array

play03:29

now let's define the signal as the sum

play03:33

of a various and a cosine wave

play03:37

let's evaluate the discrete four

play03:39

transform coefficients through the build

play03:42

team fft algorithm

play03:46

we can now implement the formula to get

play03:49

a double-sided power spectral density

play03:53

so we are squaring the description for a

play03:55

transform coefficients and dividing by n

play03:57

where n is the number of these

play03:59

coefficients to get the spectral power

play04:01

and then divide by the sampling

play04:04

frequency to get the power spectral

play04:06

density

play04:08

and this is the double-sided power

play04:10

spectral density we can now fold it

play04:13

so we consider just half of it and we

play04:16

multiply by two every component except

play04:20

for the mean value and the 90s frequency

play04:22

one

play04:25

finally let's build the frequency array

play04:27

and plot the power spectral density

play04:30

we can see that there are two peaks one

play04:33

for the mean value of the signal as it

play04:36

is located at zero errors while the

play04:38

other one for 10 the 10 Hertz component

play04:42

now we can try to implement the other

play04:44

formula we've written before to do that

play04:46

let's compute a single sided Discrete

play04:49

Fourier transform

play04:51

and now let's write the the formula

play04:54

what we should obtain is the

play04:56

single-sided power spectral density but

play04:59

let's verify that loading

play05:01

and in fact we see that

play05:04

we get the same PST curves

play05:08

now we have some good bases to move to

play05:10

the second part of the lecture

play05:12

and you might wonder why we need to

play05:14

introduce another method if we are

play05:16

already able to compute the power

play05:18

spectral density

play05:19

I'll give you at least two reasons to do

play05:22

that

play05:24

the first one is that so far we have

play05:26

always considered perfect signals

play05:29

instead our signals are usually affected

play05:32

by noise even though there is noise we

play05:35

want to get a good estimate of the power

play05:37

spectral density

play05:40

the second one is that the power

play05:43

spectral density is typically used to

play05:45

characterize not deterministic process

play05:49

and also in this case we want to have a

play05:51

power spectral density estimate which is

play05:54

enough representative of this random

play05:56

process even though we have a single

play05:58

measurement of it

play06:01

in both cases averaging might represent

play06:04

a good solution and in order to perform

play06:06

some averaging we should add multiple

play06:08

signals but we only have one

play06:11

what we can do is to artificially build

play06:14

more signals

play06:16

and to do that we can split our signal

play06:18

in two segments

play06:20

after that we will apply the phosphere

play06:23

algorithm to each segment

play06:25

in order to reduce leakage we can use

play06:28

some windows so we can multiply each

play06:31

segment by the function the window

play06:33

function and then we compute the

play06:35

Discrete Fourier transform

play06:37

from each diskit Fourier transform using

play06:40

the formulas we obtained in the first

play06:43

part of the lecture we can get the

play06:45

corresponder PST

play06:46

and as the final step we take the

play06:49

average of all the psds we obtained in

play06:52

order to come up with a single PST

play06:56

but this is not the other watch method

play06:59

to get it we need to slightly modify the

play07:01

first step when we are applying a window

play07:04

function to a signal we are modifying it

play07:07

and what happened is that we are kind of

play07:09

neglecting the first and the last part

play07:11

of each segment where the window

play07:13

coefficients are small

play07:16

this means that we are not efficiently

play07:18

using our signal and also that we might

play07:21

lose some important information if they

play07:23

occur in these areas

play07:26

So to avoid that what we do is to divide

play07:29

the signal into overlapping segments

play07:32

everything else Remains the Same

play07:35

so we multiply each overlapping segment

play07:38

by the window function we compute the

play07:40

ffts we apply the PSD formula and we

play07:43

average all them together to get a PSD

play07:47

and the beauty of compose is that all

play07:51

these steps are performed with one line

play07:53

of code

play07:54

in fact we can Leverage The compose

play07:57

built-in function called P Welsh

play08:00

this is the most complete syntax to call

play08:02

it

play08:03

it gives us output and frequency beams

play08:05

and the relative PSD values

play08:08

and it takes as input the signal the

play08:10

window coefficients the amount to

play08:12

overlap the length of the fft which

play08:16

usually is the same as the length of the

play08:18

window the simply frequency and the

play08:21

Control stream to specify if we are

play08:23

asking for a single sided or

play08:25

double-sided power spectral density

play08:28

the number of segments is determined by

play08:30

dividing the length of the signal with

play08:33

the length of the window

play08:35

moreover when we apply the window the P

play08:37

Welch function automatically computes

play08:39

and applies the correction factors to

play08:42

our signal in order to preserve its

play08:45

energy

play08:48

in case some of these input parameters

play08:50

are not given of course they will assume

play08:52

default values as explained in The Help

play08:55

page

play08:56

but let's see it in practice

play09:00

so let's consider another signal made up

play09:02

of three sine waves and with a mean

play09:04

value different from zero

play09:07

this time let's add also some random

play09:10

noise and let's visualize it

play09:14

now let's compute the power spectral

play09:16

density with the first Formula we have

play09:19

used before

play09:21

and to do that just copy and paste the

play09:23

relative part of the previous script

play09:25

let's plot it

play09:29

we see that there are Four Peaks one for

play09:32

the mean value and the other three for

play09:33

the frequency content of each sine wave

play09:36

but there is also some amount of noise

play09:40

and finally let's compute the power

play09:42

spectral density with a B wash function

play09:44

to that let's use the full syntax and

play09:47

let's define all the input arguments

play09:51

we want to divide our signal into 10

play09:53

segments so our Windows length has to be

play09:57

one tenth of the length of the signal

play09:59

let's use a rectangular window

play10:02

then when you define the overlap

play10:05

let's set it to 50 percent which means

play10:08

that the number of overlapping points is

play10:10

one half of the length of the window

play10:14

we are using the Run function to be sure

play10:16

that we are defining the an integral

play10:18

number of overlapping points

play10:20

then we need to define the length of the

play10:22

fft

play10:24

the typical Choice which is the one we

play10:25

are also doubting here is to set it

play10:27

equal to the length of the window

play10:30

in case you said it will be longer than

play10:32

the window the signal gets zero padded

play10:35

and of course you cannot set it shorter

play10:39

the simply frequency is the one that we

play10:42

have defined at the beginning of the

play10:43

script

play10:44

finally we want to get better single

play10:46

cell spectrum and we set the range to

play10:49

one-sided

play10:51

all the inputs have been defined so we

play10:54

can plot it

play10:56

we see that there are Four Peaks again

play10:58

but this time their values are smaller

play11:01

we don't have made any mistake in fact

play11:04

there is a reason for that and to better

play11:06

visualize it let's get rid of noise

play11:11

we can explain it in two ways

play11:16

let's compute the energy of the signal

play11:18

from both the psds and to do that we are

play11:21

leveraging the formula we have obtained

play11:23

in the first part of the lecture

play11:26

and we see that the energy of the first

play11:28

PSD is 10 times the energy of the second

play11:32

one

play11:33

and that is right because we obtain it

play11:36

from a signal which is 10 times longer

play11:40

the second way to explain it is to look

play11:43

at the x-axis

play11:45

you see that the distance between

play11:48

frequency beams is different and for the

play11:50

red curve

play11:51

is 10 times bigger than the blue one is

play11:55

because when we split the signal we are

play11:57

also decreasing the position time hence

play12:00

the frequency resolution gets lower

play12:03

and the PST is a density measurement and

play12:06

we are normalizing it with two different

play12:08

frequency resolutions

play12:10

the power though stays the same and you

play12:13

can verify that just Computing the area

play12:15

below the two curves

play12:18

here

play12:19

we will do that just for a small range

play12:21

of frequency let's say from 90 to 21

play12:26

years

play12:27

the area under the blue curve is given

play12:30

by

play12:31

the area under

play12:33

the blue triangle

play12:36

whose Peak value is 45 and whose base is

play12:41

0.2

play12:44

while the area of the record is given by

play12:48

the area below the

play12:51

correct triangle whose Peak value is 4.5

play12:57

and the base is 2.

play13:01

and we can see that in fact they are the

play13:04

same and these also lead us the last

play13:08

consideration

play13:09

when we apply the P Welch method the

play13:12

frequency resolution gets lower

play13:15

and of course some leakage can occur if

play13:18

we do not have the right frequency means

play13:20

to probably represent the frequency

play13:22

content of the signal

play13:26

if we change this frequency to 5.5 hours

play13:30

for example you notice that the red PST

play13:34

which is the one obtained with the p

play13:36

Welch would suffer from a leakage

play13:39

at this point you should have a good

play13:41

understanding of the physical meaning of

play13:43

the power Spectrum density

play13:45

and you should also know how to

play13:47

implement the P Welsh method and you

play13:50

should be aware of the advantages as

play13:52

well as of the disadvantages of this

play13:54

method

play13:56

and the last thing you might want to do

play13:58

is to try different input Arguments for

play14:01

the p-wash such as the window type the

play14:04

window length or the overlapping

play14:07

you can do it through the exercise we

play14:10

have worked on or with this app that I'm

play14:14

about to show you

play14:17

in this app you can see there are three

play14:20

plots

play14:21

in the top one on the left

play14:24

we will plot our signal in time domain

play14:26

and our signal is made up of three

play14:29

cosine waves and we can set their

play14:31

amplitude and frequency through the

play14:33

sliders

play14:35

moreover we can add some random noise

play14:38

and also an additional signal

play14:42

instead the other plot is used to

play14:44

represent our signal after some

play14:47

processing which is splitting into

play14:50

segments overlapping and windowing

play14:53

and these PST parameters can be defined

play14:58

through these UI controls

play15:02

and finally in the plot on the right we

play15:05

will plot the computed power spectral

play15:07

density

play15:09

and there are different aspects that you

play15:13

can investigate through this app

play15:16

for example you can see the effect of

play15:19

different windows

play15:21

in this case the hand window is reducing

play15:24

the leakage with respect to the

play15:27

rectangular window

play15:29

or you might want to see the effect of

play15:32

splitting the signal into more segments

play15:36

but what I want to show you is the

play15:38

effect of the overlap

play15:41

and to do that let's add a additional

play15:43

signal which has been properly designed

play15:46

for this purpose

play15:48

we can see that this additional signal

play15:51

across only at certain instance and it

play15:55

lasts for a really short time

play15:57

when we split the signal and we apply

play15:59

the window we see that this signal

play16:02

almost disappears because the small

play16:05

coefficients of the window are clearing

play16:07

it out in fact

play16:09

we cannot almost see anything in the PSP

play16:12

plot

play16:13

but if we introduce the overlap between

play16:16

segments we can see it and we get a more

play16:18

accurate power Specter density when the

play16:20

overlap is 50 percent

play16:22

that's it for this lecture you will find

play16:25

all the materials we have used in the

play16:27

model based development forum

play16:29

I also invite you to use this forum to

play16:32

ask any question about this lecture and

play16:34

I will be glad to answer all of them

play16:37

feel free also to post any other

play16:39

question you might have while using

play16:41

compose

play16:42

lastly and maybe more important don't

play16:45

hesitate to share in the form your

play16:47

achievements we compose

play16:49

the world Community will benefit from it

play16:52

see you at the next video

Rate This

5.0 / 5 (0 votes)

関連タグ
Signal ProcessingFourier TransformPower Spectral DensityWelch MethodFFTNoise ReductionPSD EstimationData AnalysisFrequency DomainEngineering Tutorial
英語で要約が必要ですか?