for loop isn't working and I dont Know what i am doing wrong

조회 수: 1 (최근 30일)
Colby Jennings
Colby Jennings 2021년 4월 15일
답변: Ahmed Redissi 2021년 4월 15일
I am new to coding and matlab in general, what are the initial parameters I need to set?

답변 (1개)

Ahmed Redissi
Ahmed Redissi 2021년 4월 15일
First, initialize the variable you are going to use to store the sum to zero. Then iterate over the values of t and increment the value of F with the given expression for each value of t. See the code below:
F = 0;
for t = 1:1000
F = F+((1/4)^t)-((1/5)^t);
end

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by