Question
In Matlab

Write a MATLAB program to calculate the sum of first 100 terms of the following series: 1+()+()*+(3) + + ... + Hints: Here, n
0 0
Add a comment Improve this question Transcribed image text
Answer #1

MATLAB Script:

clc;
clear;

S = 1;
n = 1;

while n <= 100
S = S + (1/3)^n;
n = n + 1;
end

fprintf('The sum of the first 100 terms of the series is : %f \n', S);

After executing we get

The sum of the first 100 terms of the series is : 1.500000
>>

The screenshot

MATLAB R2019a - academic use х HOME PLOTS APPS EDITOR PUBLISH VIEW ? o Search Documentation Sign In Run Section New Open Save

Add a comment
Know the answer?
Add Answer to:
In Matlab Write a MATLAB program to calculate the sum of first 100 terms of the...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
Active Questions
ADVERTISEMENT