need helpin solving this.
Show older comments
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 Comment
per isakson
on 2 Jan 2013
Homework?
Answers (3)
Sg dg
on 2 Jan 2013
0 votes
2 Comments
Image Analyst
on 2 Jan 2013
Edited: Image Analyst
on 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
on 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
on 2 Jan 2013
3 Comments
No. Beware of
* vs .*
and
/ vs ./
Walter Roberson
on 2 Jan 2013
The "/" operator is for matrix division. You want ./ which is element-by-element division.
Sg dg
on 2 Jan 2013
Image Analyst
on 2 Jan 2013
0 votes
Nope. n is a vector so you need ./ rather than /.
5 Comments
Sg dg
on 2 Jan 2013
Sg dg
on 2 Jan 2013
Walter Roberson
on 2 Jan 2013
You still need to add up the terms.
Sg dg
on 2 Jan 2013
doc sum
Example:
a = 1:10;
sum(a)
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!