Problem with for (nested) loops

1 回表示 (過去 30 日間)
Abhivyakti
Abhivyakti 2013 年 7 月 3 日
Hi
I am making a function. This is part of it. Here, I have a 1 x 256 array and i need to find out a corresponding value for each of its elements (256 values).
If i enter the set of commands (below) to my data individually, i get precise values of each of 256 elements of the array. But if I use it as a function, I only get values corresponding to the first and the last elements of the array, while the rest are all 0.
So basically there is some error with the loops that i've formed here.
  • The first loop signifies a summation from 1st to 'b'th element, i.e the element under consideration.
  • The second loop also signifies a summation from 'b'th element to the 256th element.
  • Finally, each value ('e') is stored in the matrix j.
Any help would be great. Am stuck on this from the past 2 days.
CODE:
for b=1:256
for c=1:b
w=l(1,c);
f=0;
f= (f + ( w* (log (w))));
end
y=-(f);
for d=b:256
v=l(1,d);
g=0;
g= (g + ( v* (log (v))));
end
u=-(g);
i=normpdf(y,0,1);
j=normpdf(u,0,1);
e= -(log(i))-(log(j))-(y/i)-(u/j);
j(1,b)=e;
end
val=j;

採用された回答

the cyclist
the cyclist 2013 年 7 月 3 日
I think the main problem with your code (but there may be others) is that when you call the line
j = normpdf(u,0,1);
you are unintentionally (I assume) overwriting your vector j(1,b), so j(1,b) is written from scratch every time. You need different variable names there.
  1 件のコメント
Abhivyakti
Abhivyakti 2013 年 7 月 8 日
Thankyou so much! :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by