is there a function 'helperRadarPulsePlot(rxpulses,threshold,... fast_time_grid,slow_time_grid,num_pulse_plot);' in matlab 2013a
Mostrar comentarios más antiguos
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 comentarios
KSSV
el 22 de Nov. de 2016
There is a problem with class of the input. Seems the function wont accept double.
RESHMA
el 22 de Nov. de 2016
Walter Roberson
el 22 de Nov. de 2016
Upgrade to at least R2013b.
Respuesta aceptada
Más respuestas (2)
csscer csscer
el 6 de En. de 2024
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
1 comentario
Andrew Kalukin
el 16 de Mzo. de 2025
Thanks for this function. It works nicely for me.
Honglei Chen
el 22 de Nov. de 2016
0 votos
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
Categorías
Más información sobre Array Geometries and Analysis en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!