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

2 次查看(过去 30 天)
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

采纳的回答

Walter Roberson
Walter Roberson 2024-3-6
imagesc(X_data, Y_data, Magnitude_data)
or just
imagesc(Magnitude_data)
  2 个评论
Walter Roberson
Walter Roberson 2024-3-7
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 2024-3-8
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 .

请先登录,再进行评论。

更多回答(0 个)

标签

Community Treasure Hunt

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

Start Hunting!

Translated by