Write a script that uses a for loop to calculate the product of the negative numbers between -1 and -53, in increments of -4 (−1, −5, · · · , −53).
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I know how to create the number sequence its just a=(-53:4:-1) but I can't figure out how to multiply all of them together.
0 Commenti
Risposte (1)
Walter Roberson
il 24 Gen 2018
Example:
Number = 1;
for K = 1 : 10
Number = Number * (K*2+1);
end
4 Commenti
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!