Holding the Previous Value of For Loop and Sum
Ältere Kommentare anzeigen
Hello,
I am trying to plot the values of two operations and I have two nested for loops. For every value of k, the clutter location changes and I want to calculate the conv_clutter for the new k value. Some part of the code is like that.
for k = 1:clutternumber
clutter_x = xa1(k);
clutter_y = ya1(k);
clutter_location = [clutter_x clutter_y ];
for i = 1:1:1024
target_location = ...........
radar_location = ............
conv_target = ..
conv_clutter = ..
sum = conv_target + conv_clutter;
data(i,:) = sum;
end
end
imagesc(real(abs(data)), 'XData', [range]), colormap turbo;
I cannot hold the previous value of the conv_clutter in imagesc. Can someone help me about the algorithm? It just shows me the value that comes from the k = 1 and the others are constant.
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Orange finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!