row that increases more every element

1 visualizzazione (ultimi 30 giorni)
RozuSolo
RozuSolo il 20 Mag 2022
Risposto: RozuSolo il 20 Mag 2022
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 Commenti
Walter Roberson
Walter Roberson il 20 Mag 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
RozuSolo il 20 Mag 2022
it increases 7 then 9 then 11 then 13 ect.. so starting at 9 increases by 7 + 2* (what ever element you are on - 1)

Accedi per commentare.

Risposta accettata

RozuSolo
RozuSolo il 20 Mag 2022
nvm I got it.. It's just two vectors multiplied to each other [3, n] .* [3, n] so each element is 3x3 4x4 5x5 6x6 ect...

Più risposte (1)

DGM
DGM il 20 Mag 2022
Here's my guess:
A = randi([10 20], 1,10)
A = 1×10
11 18 15 16 19 13 12 12 12 15
B = cumsum(A) % cumulative sum of A
B = 1×10
11 29 44 60 79 92 104 116 128 143

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by