필터 지우기
필터 지우기

Compute the following using elementwise operations on a vector:

조회 수: 1 (최근 30일)
James M.
James M. 2021년 9월 23일
댓글: James M. 2021년 9월 23일
X= (1/2^0)+(1/2^1)+(1/2^2)+...(1/2^100)
  댓글 수: 4
Steven Lord
Steven Lord 2021년 9월 23일
Since you're relatively new to MATLAB, I suggest you start with the free MATLAB Onramp tutorial (https://www.mathworks.com/support/learn-with-matlab-tutorials.html) to quickly learn the essentials of MATLAB. It's supposed to take about two hours and should teach you the basic skills you should need for your assignments. Sections 4 through 6 seem most applicable to this assignment you've posted.
James M.
James M. 2021년 9월 23일
Awesome. I'll check it out! Thanks for the information.

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

답변 (1개)

Shayan Sepahvand
Shayan Sepahvand 2021년 9월 23일
Hi,
X = 0;
for i = 1:100
X_t = 1/(2^(i-1));
X = X_t + X;
end
X
  댓글 수: 1
John D'Errico
John D'Errico 2021년 9월 23일
Please do not do what is an obvious request to do their homework. This does not help the student, who learns nothing more than that there is always someone willing to do their job for them.

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

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by