for idx = 1 hold on plot(idx,d​ensity(idx​),"*") hold off pause(0.2) end showing incorrect

6 次查看(过去 30 天)

Name your loop counter idx. For the first execution of the loop, idx should have a value of 1, and it should increase by 1 each consecutive iteration.

回答(3 个)

KSSV
KSSV 2022-7-6
density = density(:) ;
idx = (1:length(density))' ;
figure
plot(idx,density)
comet(idx,density)

Walter Roberson
Walter Roberson 2022-9-18
for idx = 1:MaximumNumberOfIterationsGoesHere

Yogesh
Yogesh 2025-4-22
density = density(:) ;
idx = (1:length(density))' ;
figure
plot(idx,density)
comet(idx,density

类别

Help CenterFile Exchange 中查找有关 Numeric Types 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by