Azzera filtri
Azzera filtri

i want to know if a image can be made with the magnitude data of an FMCW radar?

2 visualizzazioni (ultimi 30 giorni)
i have a graph with the magnitude (db ) and number of samples , this graph can be used to generate a image or i need to make more data processiong before trying to make a image

Risposta accettata

Walter Roberson
Walter Roberson il 6 Mar 2024
imagesc(X_data, Y_data, Magnitude_data)
or just
imagesc(Magnitude_data)
  2 Commenti
Walter Roberson
Walter Roberson il 7 Mar 2024
You can skip saving the magnitude data to a file.
Note: The X_data and Y_data is used to position the image. Only the first element and the last element of X_data and Y_data are paid attention to.
X_data and Y_data name the positions of the centres of the lower-left and upper right pixels, not the edges.
Walter Roberson
Walter Roberson il 8 Mar 2024
When you imagesc() providing just the data matrix, then the image is displayed with the center of the lower left element being at (1,1) and with element (J,K) being displayed with its center at (J,K) (so, increasing by one data unit on the axes for each additional element.)
When you imagesc() passing in x data and y data, then the image is displayed with the center of the lower left element being at (xdata(1), ydata(1)) and with the center of the upper right element being at (xdata(end), ydata(end)) and with everything else distributed equally between those data units.
If the image is the only thing on the axes, then the only difference it makes is on the labels of the axes. You are probably going to want one of the axes labeled by frequency, possibly in megahertz .

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by