How to calculate price weighted function?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/982015/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/982010/image.png)
0 Commenti
Risposte (1)
Mahmoud Ashraf
il 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
Vedere anche
Categorie
Scopri di più su Financial Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!