How to plug individual matrix values into a formula

1 次查看(过去 30 天)
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.

采纳的回答

Ameer Hamza
Ameer Hamza 2018-4-29
编辑:Ameer Hamza 2018-4-29
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))

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by