is there a function 'helperRad​arPulsePlo​t(rxpulses​,threshold​,... fast_time_​grid,slow_​time_grid,​num_pulse_​plot);' in matlab 2013a

6 次查看(过去 30 天)
when i am running helperRadarPulsePlot(rxpulses,threshold,... fast_time_grid,slow_time_grid,num_pulse_plot); i get an error message
Undefined function 'helperRadarPulsePlot' for input arguments of type 'double'.
Error in try1 (line 119) helperRadarPulsePlot(rxpulses,threshold,...
how can i solve it
  3 个评论

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2016-11-22
编辑:Walter Roberson 2016-11-22
No, there is not.
It was new in R2013b, and was not present in R2013a.
  4 个评论

请先登录,再进行评论。

更多回答(2 个)

Honglei Chen
Honglei Chen 2016-11-22
This is a helper function used in the example of Designing a Basic Monostatic Radar. The example ships in R2013a so you should be able to find the corresponding helper function used in that release.
HTH

csscer csscer
csscer csscer 2024-1-6
I think it is a BUG, so I write the funciton for it.
function helperRadarPulsePlot(pulses,threshold,fgrid,~,num_pulse_plot)
for n=1:num_pulse_plot
subplot(num_pulse_plot,1,n);
plot(fgrid,20*log10(abs(pulses(:,n))),'b','LineWidth',2);hold on;
plot(fgrid,10*log10(threshold)*ones(1,size(pulses,1)),'-.r','LineWidth',1);hold off;
xlabel('Time (s)');
ylabel('Power (dBW)');
title(['Pulse ',num2str(n)]);
end
end

类别

Help CenterFile Exchange 中查找有关 Matched Filter and Ambiguity Function 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by