How i can find the difference between 2 values.
9 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(2 个)
Jon
2022-7-18
y = T1 - T2
9 个评论
Jon
2022-7-20
编辑:Jon
2022-7-20
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.
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!