how to plot the graph for the following result

조회 수: 1 (최근 30일)
jaah navi
jaah navi 2019년 2월 5일
댓글: jaah navi 2019년 2월 7일
I am getting the following result in the command window.
iter = 1
1. global fitness is 1.9669
iter = 2
2. global fitness is 1.9669
iter = 3
3. global fitness is 1.9669
iter = 4
4. global fitness is 1.2878
I want to plot the graph in a manner iter should be on x axis and global fitness on y axis.
I tried with the command plot((global_fitness,:),'-*b') but unable to get the result.
Could anyone please help to fix the issue

채택된 답변

KSSV
KSSV 2019년 2월 5일
figure
hold on
for i = 1:100
global_fitness = rand ;
plot(i,global_fitness,'*r')
end
Or, save all the values of a loop and plot at the end.
y = zeros([],1) ;
for i = 1:100
global_fitness = rand ;
y(i) = global_fitness ;
end
plot(1:100,y,'*r')
  댓글 수: 13
KSSV
KSSV 2019년 2월 6일
i have asked some question as well....did you see that?
jaah navi
jaah navi 2019년 2월 7일
With resepect to the codingi need to find on which iteration the fitness function is getting converged.And to get the centroid location with respect to the data sets.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Discrete Data Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by