element wise operation column matrix
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a column matrix of data , Temp_data= [20;27;29;33;40] , i want to subtract each element i, by the first element (i.e 20-20; 27-20; 29-20;33-20), how do i do this?
also, how to do the similar operation if i have to subtract consequtive elements, i.e A(n) - A(n-1) [ex: 20-20; 27-20; 29-27....]
0 commentaires
Réponses (2)
Stephan
le 25 Mai 2021
Temp_data= [20;27;29;33;40]
Case_1 = Temp_data - Temp_data(1)
Case_2 = diff(Temp_data)
0 commentaires
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!