How to Subtract and Add across columns in Matlab?

조회 수: 2 (최근 30일)
Minjun Seo
Minjun Seo 2019년 8월 13일
댓글: Star Strider 2019년 8월 14일
Okay, I have a data table.
I want to perform simple mathematical operations on the columns of the table versus let's say a different column.
Similar to diff() but diff() works going down the column. I want to know a way to go across.

채택된 답변

Star Strider
Star Strider 2019년 8월 14일
편집: Star Strider 2019년 8월 14일
In the documentation for diff, see Differences Between Matrix Columns. You need to specify the dimension.
EDIT —
With respect to adding, cumsum (and sum) work the same way. See: Cumulative Sum of Each Row In Matrix.
  댓글 수: 2
Minjun Seo
Minjun Seo 2019년 8월 14일
It says that diff is an undefined function for type 'table'. Is there a way to fix this?
Star Strider
Star Strider 2019년 8월 14일
I thought you were actually working with matrices.
Neither diff nor cumsum will work on tables, even using the rowfun function.
You would need to use the table2array function to extract the data from the table, do the calculations, then create a new table with the results.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Tables에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by