Compute the following using elementwise operations on a vector:

X= (1/2^0)+(1/2^1)+(1/2^2)+...(1/2^100)

4 件のコメント

John D'Errico
John D'Errico 2021 年 9 月 23 日
編集済み: John D'Errico 2021 年 9 月 23 日
Please stop poting your homework assignment qiuestions. (This now being the second one you posted.) Start to learn MATLAB. You will not learn until you make an erffort. Go through the onramp tutorials. If not, then look at YouTube, where you will find free courses taught to get you started. MAKE AN EFFORT.
James M.
James M. 2021 年 9 月 23 日
編集済み: James M. 2021 年 9 月 23 日
I sincerely apologise for this behaviour. I immediately thought that this "Ask" page was directly for question answering and the like. It's just that our professor immediately went onto these type of questions without explanation. I understand the question completely, but implementing them with code is different. This isn't my forte, but a course I need a take for university. Thanks again for the clarification, and other possible help options (?). I'll make a damn effort.
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 日

0 投票

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.

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeIntroduction to Installation and Licensing についてさらに検索

製品

リリース

R2021a

質問済み:

2021 年 9 月 23 日

コメント済み:

2021 年 9 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by