필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How can I translate the above psuedocode to

조회 수: 2 (최근 30일)
Bilal Ates
Bilal Ates 2020년 6월 22일
마감: MATLAB Answer Bot 2021년 8월 20일
How can I translate the above psuedocode to `MATLAB`?
Thanks.
  댓글 수: 1
Steven Lord
Steven Lord 2020년 6월 22일
This sounds like a homework assignment. If it is, show us the code you've written to try to solve the problem and ask a specific question about where you're having difficulty and we may be able to provide some guidance.
If you aren't sure where to start because you're not familiar with how to write MATLAB code, I suggest you start with the MATLAB Onramp tutorial (https://www.mathworks.com/support/learn-with-matlab-tutorials.html) to quickly learn the essentials of MATLAB.
If you aren't sure where to start because you're not familiar with the mathematics you'll need to solve the problem, I recommend asking your professor and/or teaching assistant for help.

답변 (1개)

Alan Stevens
Alan Stevens 2020년 6월 22일
Possibly something like the following (though note that n would need to be 1 greater than the n in your original, because MATLAB's indexing starts at 1, not 0):
function tot = LG(x,y,n,new_x)
tot = 0;
for i = 1:n % MATLAB indexing starts at 1
f = y(i);
for j = 1:n+1
if i ~= j
f = f*(new_x - x(j))/(x(i) - x(j));
end % of if statement
end % of j loop
tot = tot + f;
end % of i loop
end
  댓글 수: 3
Alan Stevens
Alan Stevens 2020년 6월 23일
???
Bilal Ates
Bilal Ates 2020년 6월 23일
Are you sure Sur?

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by