How to create a sequence
显示 更早的评论
Hi, I am trying to create a sequence of values, where the nth term is 1/(3n+2). so if I want 10 values, the desired output would be [1/2 1/5 1/8 1/11 and so on until 1/20]. I need to use this vector for my nest function,.
回答(1 个)
David Hill
2019-9-12
n=1:10;
x=1/(3*n+2);
You just make a vector n (1:10) and plug it into the equation (x is your desired vector).
3 个评论
David Hill
2019-9-12
x=1./(3*n+2);
forgot the dot!
John D'Errico
2022-8-31
@Chris - But then if you want EXACTLY 10 terms starting at 1/2, it would be
n = 0:9;
0:10 would create 11 terms.
类别
在 帮助中心 和 File Exchange 中查找有关 Programming 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!