simple Equation, writing formula

1 view (last 30 days)
I Truly appreciate if somebody check my code. I should measure a parameter of a long vector and I have wrtten the code but my prof. says it is something wrong. I am new in MATLAB:( .Thank you.
The equation is:
RC = ½(deltaVp/averageVp + deltaRHO/averageRHO). % reflection coefficients
My code is:
for j=2:l;
r2(j)=1/2.*((v(j)-v(j-1))/(v(j)+v(j-1))+(d(j)-d(j-1))/(d(j)+d(j-1))); % reflection coefficients
end
  2 Comments

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 14 Jan 2021

Average is sum divided by two. You do not divide by two.

  4 Comments
Bobby Fischer
Bobby Fischer on 14 Jan 2021
Okay, now I understand.
Regards.

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!