need helpin solving this.
Ältere Kommentare anzeigen
create a vector X with the elements,
add up the element of the version of this vector that has 100 elements.
thanks for the help.
n= 1:100
Xn= ((-1).^n+1)/(2*n-1)
Xn =
0.0076is this correct?
1 Kommentar
per isakson
am 2 Jan. 2013
Homework?
Antworten (3)
Sg dg
am 2 Jan. 2013
0 Stimmen
2 Kommentare
Image Analyst
am 2 Jan. 2013
Bearbeitet: Image Analyst
am 2 Jan. 2013
You go first. You can do this in two lines of MATLAB code. What were they and what were your "current answers"? Then we can tell you if you were correct.
Roger Stafford
am 2 Jan. 2013
As you near the end of your one hundred terms your sum ought to be oscillating roughly equal distances on either side of pi/4. Does that help?
Sg dg
am 2 Jan. 2013
3 Kommentare
No. Beware of
* vs .*
and
/ vs ./
Walter Roberson
am 2 Jan. 2013
The "/" operator is for matrix division. You want ./ which is element-by-element division.
Sg dg
am 2 Jan. 2013
Image Analyst
am 2 Jan. 2013
0 Stimmen
Nope. n is a vector so you need ./ rather than /.
5 Kommentare
Sg dg
am 2 Jan. 2013
Sg dg
am 2 Jan. 2013
Walter Roberson
am 2 Jan. 2013
You still need to add up the terms.
Sg dg
am 2 Jan. 2013
doc sum
Example:
a = 1:10;
sum(a)
Kategorien
Mehr zu Matrix Indexing finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!