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!