フィルターのクリア

Save plots in a for cycle

1 回表示 (過去 30 日間)
Miguel Albuquerque
Miguel Albuquerque 2022 年 7 月 6 日
Hey guys, I have this code that correlates two signals with a large amount of samples(30 million). I want to see the plot in the code(surf) for all the iterations, maybe, not all, but perhaps skipping one iteration. Meaning I see the plot in one iteration, the next I dont see, the following I see, and so on. How can I make this, so that the plots are saved in PNG perhaps,to a folder in my pc identified with different number so I can see which iteration it was.
I wanted to do this in a good matlab way, since there are a lot of plots.
Thanks in advance
reference_reshaped = reshape(Reference_signal, 1000, 4, []);
surveillance_reshaped = reshape(Surveillance_signal, 1000, 4, []);
counter=1;
sz = size(reference_reshaped);
for i = 1:sz(3)
r = reference_reshaped(:,1,i);
s = surveillance_reshaped(:,1,i);
[afmag3,delay3,doppler3] = ambgfun(r,s,Fs,[250000 250000]);
afmag3(afmag3>1 )= 1;
counter=counter+1
figure;
surf(delay3,doppler3,afmag3,'LineStyle','-.');
shading interp;
axis([-1e-5 1e-5 -2000 2000]);
grid on;
view([140,35]);
colorbar;
ylabel('Doppler (Hz)');
xlabel('Delay(s)');
title('Ambiguity Function Sref');
end
  2 件のコメント
Abderrahim. B
Abderrahim. B 2022 年 7 月 6 日
Hi!
Some informations are needed to help :
  1. Share reference_signal and Surveillance_signal if possible.
  2. Clarify further your question.
Thanks
Miguel Albuquerque
Miguel Albuquerque 2022 年 7 月 6 日
Thanks in advance,
I cant attach the signals, they are too big, but in format complex double.
I want that the plot on the code is saved to a folder in each iteration. If possible, on first iteration the plot is saved, second iteration the plot is not saved, 3 iteration plot is saved,... So I could reduce the number of plots by half.
If not possible save the plot on each iteration.

サインインしてコメントする。

採用された回答

Jan
Jan 2022 年 7 月 6 日
編集済み: Jan 2022 年 7 月 6 日
If you want to create every 2nd image only, simply use:
for i = 1:2:sz(3)
% ^^ then i is [1, 3, 5, ...]
To save the image, simply use exportgraphics and sprintf to create the file name.
Creating a new figure without deleting the old one will let Matlab crash due to exhausted resources. It is much faster to create the figure once only and to modify the graphics object only:
reference_reshaped = reshape(Reference_signal, 1000, 4, []);
surveillance_reshaped = reshape(Surveillance_signal, 1000, 4, []);
counter = 1;
sz = size(reference_reshaped);
FigH = figure;
AxesH = axes(FigH);
SurfH = surf(AxesH, [], [], [],'LineStyle','-.'); % [EDITED]
shading interp;
axis([-1e-5 1e-5 -2000 2000]);
grid on;
view([140,35]);
colorbar;
ylabel('Doppler (Hz)');
xlabel('Delay(s)');
title('Ambiguity Function Sref');
for i = 1:sz(3)
r = reference_reshaped(:,1,i);
s = surveillance_reshaped(:,1,i);
[afmag3,delay3,doppler3] = ambgfun(r,s,Fs,[250000 250000]);
afmag3(afmag3>1 )= 1;
counter=counter+1;
set(SurfH, 'XData',delay3, 'YData', doppler3, 'ZData', afmag3); % [EDITED]
exportgraphics(AxesH, sprintf('Image%07d.png', counter));
end
If you have 15 Million images and the creation and saving takes 0.1 seconds, the code runs for more than 17 days. Checking the images manually will need some years afterwards.
  3 件のコメント
Jan
Jan 2022 年 7 月 6 日
@Miguel Albuquerque: This was a bug. See [EDITED] in the code.
You can provide test data created by some rand calls. This does not reveal your original data and is compact enough. Most of all the answering persons can test their codes in the forum before posting.
Miguel Albuquerque
Miguel Albuquerque 2022 年 7 月 7 日
Thanks a lot , it works fine

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

タグ

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by