row that increases more every element
Afficher commentaires plus anciens
Hello,
I was wondering how I would make an array that increases more every element
for example:
given lets say n=randi([10 20], 1);
how would i have vect1 = 9, 16, 25, 36, ... n: so bascially increasing by +2 every element starting at 9
3 commentaires
KSSV
le 20 Mai 2022
Your limit of numbers is [10,20] how you expect 25, 36 .. ?
Walter Roberson
le 20 Mai 2022
Your example increases by 9 each time, not by 2?
Are you wanting to start with the fixed value 9 and use the random number to determine the number of terms??
RozuSolo
le 20 Mai 2022
Réponse acceptée
Plus de réponses (1)
Here's my guess:
A = randi([10 20], 1,10)
B = cumsum(A) % cumulative sum of A
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!