How to calculate price weighted function?
Show older comments
I'm trying to calculate the following function in Matlab. This is what I have tried so far but it gives me NaN. Can someone help?


Answers (1)
Mahmoud Ashraf
on 28 Apr 2022
avg=rand(1,505);
sum=0;
for j=1:505
sum=sum+avg(1,j);
end
for m=1:505
pweight(1,m)=avg(1,j)/sum;
end
1 Comment
de Bord Julien
on 29 Apr 2022
Categories
Find more on Financial Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

