Vectors and Sum operation

조회 수: 1 (최근 30일)
bondpen
bondpen 2018년 3월 19일
댓글: bondpen 2018년 3월 19일
Trying to use sum to figure about resistor formula, 1/[(1/r1)+1rn)] where n can be any number.
What i have come up with:
function R = scirpt(y)
R = 1/sum(1/(y));
end
Well be entering this:
scirpt([100,200,300]) should output 54.5455
if true
% code
end

채택된 답변

John D'Errico
John D'Errico 2018년 3월 19일
편집: John D'Errico 2018년 3월 19일
R = 1/sum(1./y);
y is a vector. You want to divide EACH of the elements of y into 1. So you use the ./ operator, which is designed to solve element-wise operations. (Just like the .* and .^ operators.)
The other divide is a scalar/scalar operation, so / works fine there, although ./ would also be acceptable. That is:
R = 1./sum(1./y);
would also work.
Finally, there was no need to put a parens around y in your original line. So while it is fine to add additional parens if you are not sure you need them in some spot, too many parens that need not be there will only make things confusing, hard to read and debug.
  댓글 수: 1
bondpen
bondpen 2018년 3월 19일
Thanks for explaining why you need ./ operator. Thanks.

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by