Plotting a doppler frequency hyperbola
3 次查看(过去 30 天)
显示 更早的评论
I am trying to plot a doppler frequency isodop hyperbola from the given eqiation h^2 = x^2*[(fdo/fd)^2 -1] -y^2 where fd is doppler frequency shift for signal at radar and fdo is doppler frequency shift for target in direction of motion. fd ranges from .4 Khz to 5.6 Khz in increments of .4 Khz. fdo is constnact at 6 KHz. I plotted the hyperbola function and I get the hyperbola curves but only for starting frequency of .4 KHz. I am trying to have it sweep through from .4 KHz to 5.6 KHz with increments of .4 KHz but I cannot seem to do it. I tried using linspace(.4,5.6,.4)*1e3 but that is not working. Any suggestions of what I may add to my existing code to accomplisfh this? Also, is there a way to plot only one line per freqnecy instead of multiple lines per frequency? I am open to any advice this forum may give me. Below is the current code I have.
fd = 400;
h = @(x,y) sqrt((x.^2).*((6000/fd).^2-1)-(y.^2));
figure(1);
fcontour(h);
set(gca, 'XLim',[0 40]);
set(gca, 'YLim',[-10 10]);
Thank you,
Jose
0 个评论
采纳的回答
VBBV
2022-2-1
fd = linspace(400,5600,14); % Hz
for i = 1:length(fd)
h = @(x,y) sqrt((x.^2).*((6000/fd(i)).^2-1)-(y.^2));
subplot(4,4,i)
fcontour(h,[0 40 -10 10]);
title(['fd =',num2str(fd(i))])
end
you could try using for loop as above
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File 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!