Can someone help me with a question to do with sequences and creating a function file that find n terms of sequence
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Abdullaziz Errayes
il 11 Dic 2016
Modificato: Roger Stafford
il 12 Dic 2016
Can someone show me the function file that would calculate the first n terms of this sequence a_i=a_(i-1)+3i as well as the sum of the first n terms please!
0 Commenti
Risposta accettata
Roger Stafford
il 12 Dic 2016
Modificato: Roger Stafford
il 12 Dic 2016
a = a_0 + cumsum(3:3:3*n); % The sequence of first n terms
s = sum(a); % The sum of these
0 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!