How to compute a summation of the following equation?

조회 수: 1 (최근 30일)
shishir kumar
shishir kumar 2015년 8월 26일
댓글: Walter Roberson 2015년 8월 28일
I need to compute it dynamically. Please help me out with the code. Please find the attachment.... Thank you

답변 (1개)

Walter Roberson
Walter Roberson 2015년 8월 26일
pequiv = a * sum(rho .* h);
  댓글 수: 2
shishir kumar
shishir kumar 2015년 8월 28일
Hi Roberson, thanks for your answer but here we cannot calculate for the condition of 1 to N that's been mentioned in the equation. Also it should take the values for the set of values for rho and h as given in the equation. If you come across the answer pls help me out.
Walter Roberson
Walter Roberson 2015년 8월 28일
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));

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

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by