필터 지우기
필터 지우기

Implementation of Moving target Indicator

조회 수: 4 (최근 30일)
Jalal Khan
Jalal Khan 2023년 12월 12일
이동: Walter Roberson 2023년 12월 13일
can i implement mti on range doppler map by zeroing the velocity axis near zero?
  댓글 수: 2
Jalal Khan
Jalal Khan 2023년 12월 13일
이동: Walter Roberson 2023년 12월 13일
it is range doppler map
Image Analyst
Image Analyst 2023년 12월 13일
이동: Walter Roberson 2023년 12월 13일
Yes, you've already said that. Did you try my suggestions?

댓글을 달려면 로그인하십시오.

답변 (1개)

Image Analyst
Image Analyst 2023년 12월 12일
Not sure what that means. Explain "zeroing the velocity axis near zero".
You can certainly plot a symbol at a certain (x,y) point like this:
hPlot = plot(x, y, 'r+', 'LineWidth', 2, 'MarkerSize', 30);
and then to remove it in preparation for plotting the next point:
delete(hPlot);
  댓글 수: 2
Jalal Khan
Jalal Khan 2023년 12월 12일
in the array of data that contains velocity components in rows by making the values of that particular row (the values that contain the velocity compnents near zero) to zero as shown in image
Image Analyst
Image Analyst 2023년 12월 12일
I still don't understand. How many components are there? There would be 3 if the object is moving in 3 dimensions, and 2 if it's moving in 2-D and 1 if it's moving along a line. You seem to have hundreds of velocity components. Why? If your object moving in a hundred dimensional space?
If you want to zero out a row in a matrix, do this
velocity(rowNumber, :) = 0;
If you want to zero out a column in a matrix, do this
velocity(:, columnNumber) = 0;
To learn other fundamental concepts, invest 2 hours of your time here:

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Detection, Range and Doppler Estimation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by