How to compute a summation of the following equation?
Show older comments
I need to compute it dynamically. Please help me out with the code. Please find the attachment.... Thank you
Answers (1)
Walter Roberson
on 26 Aug 2015
pequiv = a * sum(rho .* h);
2 Comments
shishir kumar
on 28 Aug 2015
Walter Roberson
on 28 Aug 2015
Is there a reason why rho or h would not be length N?
If there is a reason why they are longer then use
pequiv = a * sum(rho(1:N) .* h(1:N));
You could put it all in a function if you really wanted, but it seems a bit simple:
pequiv = @(N,a,rho,h) a * sum(rho(1:N) .* h(1:N));
Categories
Find more on Mathematics 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!