joining various points when using a for loop.

조회 수: 2 (최근 30일)
s
s 2015년 9월 24일
댓글: Star Strider 2015년 9월 25일
for p=0:0.05:1
h=p*log(1-p)
plot(p,h)
end
For the above code i am trying to join the discrete points but i am unable to do so.i used line command but still i get discrete points only i am unable to connect them.

채택된 답변

Star Strider
Star Strider 2015년 9월 25일
편집: Star Strider 2015년 9월 25일
I would eliminate the loop and take advantage of MATLAB’s vectorisation capabilities:
p = 0:0.05:1;
h = p.*log(1-p);
figure(1)
plot(p,h)
This uses element-wise operations (denoted by the dot operator in (.*)). See the documenataion for Array vs. Matrix Operations for details.
  댓글 수: 9
s
s 2015년 9월 25일
the equation is given in a TB.Using MATLAB, plot the entropy of the binary data source as a function of p = Pr[1], when p = 0, 0.05, 0.10, . . . , 0.95, 1.0. Note that Pr[0] = 1- p. Show that the maximum entropy is achieved when p = 0.5. Make sure that the entropies of p = 0 and 1 are plotted.So i need the graph to be plotted such that it touches 0 and 1.but i am not allowed to use 0 as a index in matlab.pls help me
Star Strider
Star Strider 2015년 9월 25일
You can either do the function form I provided, or the straight vectorised equation for h Image Analyst provided. Both give you exactly what you want, with the plot. Considering you want h(0), I would use the function form to get it.
Notice that the function form is not an array, so h(0) is the function of h at 0, not the 0 index of an array.
To get the value of the array h where p=0, do this:
p = 0:0.05:1;
h = -p.*log2(p)-(1-p).*log2(1-p);
p0 = find(p == 0);
hp0 = h(p0)
However hp0 is NaN because log2(0) does not exist, and will not plot at that point.
If the equation you provided is correct, this instruction ‘Make sure that the entropies of p = 0 and 1 are plotted.’ is in error, because the entropy at p=0 does not exist.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by