How i can find the difference between 2 values.
8 views (last 30 days)
Show older comments
I have 2 tables, with 1 column and 24 rows each.
I want to find the diferrence between each value in every row.
for example
T1=[1.5
2.5
3.5
4.5]
T2=[1.2
2
3
4]
The answer must be
Diff=[ 0.3
0.5
0.5
0.5]
0 Comments
Answers (2)
Jon
on 18 Jul 2022
y = T1 - T2
9 Comments
Jon
on 20 Jul 2022
Edited: Jon
on 20 Jul 2022
Glad you got this sorted out. If this answered your question please accept the answer. Thanks @Stephen23 for pressing through the details on this and helping the OP understand.
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!