how to divide two groups of number and sum the fractions of the two...

3 views (last 30 days)
If I had x= 1 2 3 4 5 and y= 6 7 8 9 10...How would I divide x1/y1+ x2/y2? Then how could I take those numbers an add them together?
Thanks So Much

Answers (1)

Image Analyst
Image Analyst on 11 Nov 2013
Try this:
theSum = sum(x./y)

Categories

Find more on Mathematics 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!