(Solved) Help with please these are hard
Mostra commenti meno recenti
;
' Write a function called threshold that determines the number of terms required for the sum
In other words, your output arguments are terms that gives the number of n required for
sum to exceed a limit; and total that gives that sum.'
2 Commenti
Rik
il 27 Mag 2021
Why did you edit away parts of your question? That is very rude.
Rena Berman
il 29 Giu 2021
(Answers Dev) Restored edit
Risposta accettata
Più risposte (1)
Nikita Agrawal
il 26 Mag 2021
function [number_of_terms] = threshold(limit)
T = 0;
k=1
while T < limit
T = T + 5*k*k-2*k;
k = k+1;
end
number_of_terms=k
end
Categorie
Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!