Help solving this problem?

조회 수: 1 (최근 30일)
Bailey Owen Banks
Bailey Owen Banks 2019년 12월 4일
댓글: Bailey Owen Banks 2019년 12월 7일
I was wondering if anyone could lend me a hand in starting to solve this question? im relatively new to the program.

채택된 답변

cater re
cater re 2019년 12월 4일
an(1) = 2
an(2) = 5
total = 0
for i=3:100
an(i) = an(i-1) + 2*an(i-2)
total = total + an(i)
end
plot(3:100, an(3:100))
  댓글 수: 1
Bailey Owen Banks
Bailey Owen Banks 2019년 12월 7일
Thank you so much!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Triangulation Representation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by