Finding difference between two rows

조회 수: 11 (최근 30일)
Karina
Karina 2018년 4월 25일
댓글: Dooyoung Kim 2018년 6월 28일
I have a 6696502 x 2 table which shows energy in MW for a period of time. I want to add a column which is the difference in energy for each time period so column 3 row 2 shows the difference in values for row 2 and 1 in column 2.
I have the following code, however it is very slow to compute given my table is so large. if true
if true
% code
for n = 1:countReg
if n == 1
diffReg = 0;
else
diffReg = RegCol(n) - RegCol(n-1);
end
newRegTable.ChangeReg(n) = diffReg;
end
end
Is there any way to do this so it does not take so much time?

답변 (1개)

Guillaume
Guillaume 2018년 4월 25일
yourtable.ChangeReg = [0; diff(yourtable.NameOfFirstColumn)]

카테고리

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