Trying to write a series: 2n+1

5 Ansichten (letzte 30 Tage)
steve guy
steve guy am 18 Feb. 2013
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 Kommentare
José-Luis
José-Luis am 18 Feb. 2013
Bearbeitet: José-Luis am 18 Feb. 2013
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 am 18 Feb. 2013
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.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Youssef  Khmou
Youssef Khmou am 18 Feb. 2013
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 Kommentare
Jan
Jan am 18 Feb. 2013
Please, Youssef, do not post full answers for homework questions. Thanks.
Youssef  Khmou
Youssef Khmou am 18 Feb. 2013
Alright Jan !

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Programming finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by