Problem with Frequency distribution plot

I have a scatter plot in (x, z). I need to plot a frequency distribution of z-values as a function of x. Please suggest.

4 Kommentare

Torsten
Torsten am 12 Apr. 2023
A frequency distribution of z-values is a plot where the x-axis are the z-values and the y-axis shows the frequency of the z-values.
But what is a frequency distribution of z-values as a function of x ?
Torsten
Torsten am 13 Apr. 2023
So the z-value doesn't matter ? Then simply use histogram(x).
Image Analyst
Image Analyst am 13 Apr. 2023
This is a poorly worded question. Perhaps frequency distribution means histogram. I was thinking it was like a signal and he wanted the frequency spectrum of the signal. But it looks like @AkB is ignoring our comments, so I'm not going to do anything more until we hear back from @AkB with a clearer explanation of what the context/situation is.
Torsten
Torsten am 13 Apr. 2023
Bearbeitet: Torsten am 13 Apr. 2023
I think he/she is unsure about it himself/herself.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Image Analyst
Image Analyst am 12 Apr. 2023

0 Stimmen

If x is not uniformly spaced then use interp1 or spline to get x and z uniformly spaced. Then call fft(z).
ft = fft(z);
plot(abs(ft), 'b-');

Kategorien

Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange

Gefragt:

AkB
am 12 Apr. 2023

Bearbeitet:

am 13 Apr. 2023

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by