フィルターのクリア

How can i plot figure angaist specific number of ii likefor all ii that are multiple of 10

1 回表示 (過去 30 日間)
function save_figures( Pos_fin, targetCoordinates,ii= )
temp = find(Pos_fin(:,1) == 0);
if(temp(:,1) ~= 0)
Pos_fin(temp(1):end,:) = [];
end
figureFullScreen
subplot_er(1,1,1); plot3(Pos_fin(:, 1), Pos_fin(:,2), Pos_fin(:,3)), hold on, scatter3(targetCoordinates(:, 1), targetCoordinates(:, 2), targetCoordinates(:, 3)),
set(gca,'fontsize', 20)
set(findall(gca, 'Type', 'Line'),'LineWidth',2);
set (gca,'color','none')
grid on, xlabel('\rightarrow X'), ylabel('\rightarrow Y'), zlabel('\rightarrow Z')
print(gcf, num2str(ii),'-depsc','-r600');
savefig(num2str(ii)),
close all
end

採用された回答

KSSV
KSSV 2018 年 10 月 16 日
for i = 1:100
if ~mod(i,10)
plot(rand(10,1))
title(sprintf('i=%d',i))
drawnow
pause(0.5)
end
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by