How do I write a script that calculates and prints all values for N according to the following expressions and limits?
조회 수: 6 (최근 30일)
이전 댓글 표시
I have earlier used a similar expression to calculate the sum using a for loop (without limits) and it looked like this:
for N=1:100
S(N)=S(N-1)+(1/N^2)
end
In this case I need to create a while loop how do I start?
/ I am a super-beginner at matlab
댓글 수: 1
Asad (Mehrzad) Khoddam
2020년 10월 6일
You can use two while loops: one for the starting point and the other for the end point.
채택된 답변
추가 답변 (1개)
Asad (Mehrzad) Khoddam
2020년 10월 6일
N=1;
% sum function uses an internal loop
% find the first N that sum is >= 1.6
while sum(1./[1:N].^2) < 1.6
N = N+1;
end
disp(N)
% find the end N
while sum(1./[1:N].^2) <= 1.62
N = N+1;
end
disp(N-1)
% the answer is 22 through 39
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
