row that increases more every element
显示 更早的评论
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 个评论
KSSV
2022-5-20
Your limit of numbers is [10,20] how you expect 25, 36 .. ?
Walter Roberson
2022-5-20
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
2022-5-20
采纳的回答
更多回答(1 个)
Here's my guess:
A = randi([10 20], 1,10)
B = cumsum(A) % cumulative sum of A
类别
在 帮助中心 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!