How i can find the difference between 2 values.
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (2)
Jon
le 18 Juil 2022
y = T1 - T2
9 commentaires
Jon
le 20 Juil 2022
Modifié(e) : Jon
le 20 Juil 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.
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!