how to subtract/divide corresponding rows and columns of two tables?

2 views (last 30 days)
There are twoe tables that have the same number of columns and rows. How can I substractdivide each correpsonindg elelments?
They are very large tables (many rows and columns) so I am searching for a standard matlab command.

Answers (1)

J Chen
J Chen on 29 Nov 2019
put the tables in to two variables of matrices. Use element-wise operation: ./ or .*
  2 Comments
Zeynab Mousavikhamene
Zeynab Mousavikhamene on 29 Nov 2019
@ J Chen: As they are large table, I am searching for efficient method like a matlab command.
J Chen
J Chen on 29 Nov 2019
./ and .* are standard matlab command. they should be efficient. give them a try.

Sign in to comment.

Categories

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