Trying to write a series: 2n+1

3 次查看(过去 30 天)
I'm trying to write a 2n+1 series that starts at the number 2 and goes for 30 terms. How can I do this?
  2 个评论
José-Luis
José-Luis 2013-2-18
编辑:José-Luis 2013-2-18
This sounds an awful lot like homework. What have you tried so far? Please read the Getting started part of the documentation.
How about a loop?
doc for;
Jan
Jan 2013-2-18
It would work without a FOR loop also, if it works at all. Usually "n" is a natural number in problems related to series. But there is no natural number n such that 2*n+1 equals 2.

请先登录,再进行评论。

采纳的回答

Youssef  Khmou
Youssef Khmou 2013-2-18
hi, try this :
% Sol1 : vectorized
serie1=2*[2:30]+1; figure, plot(serie1);
% Sol2 : loop
for x=2:30
serie2(x)=2*x+1;
end
serie2(1)=[]; figure, plot(serie2)
  2 个评论
Jan
Jan 2013-2-18
Please, Youssef, do not post full answers for homework questions. Thanks.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by