element wise operation column matrix
조회 수: 2 (최근 30일)
이전 댓글 표시
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
답변 (2개)
Stephan
2021년 5월 25일
Temp_data= [20;27;29;33;40]
Case_1 = Temp_data - Temp_data(1)
Case_2 = diff(Temp_data)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!