Clear Filters
Clear Filters

How to plug individual matrix values into a formula

3 views (last 30 days)
I have a 50x2 matrix and I want to plug in the individual values into a formula of D=(L*W)/(L+W) and make an output matrix with answers. each row of the matrix is a pair of L and W that should go together when plugging them into the formula.

Accepted Answer

Ameer Hamza
Ameer Hamza on 29 Apr 2018
Edited: Ameer Hamza on 29 Apr 2018
Use arrayfun(). If A is the matrix in your case use it as
out = arrayfun(@(x, y) x*y/(x+y), A(:, 1), A(:, 2))

More Answers (0)

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!