Filter löschen
Filter löschen

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

1 Ansicht (letzte 30 Tage)
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

Akzeptierte Antwort

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

Weitere Antworten (0)

Kategorien

Mehr zu Interactive Control and Callbacks finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by