read specific data from a given row and column from table
显示 更早的评论
I have table of size 28000x3
and i want to biefuracte data which looks like this.
I am using slope condition to collect the data.

function bifercation(Data)
c = 1;
for i= c:length(Data.para)
find((Data.para(i+1)-Data.para(i)) / (Data.Time(i+1)-Data.Time(i)))
end
end
however; i am getting following errors.
Index exceeds the number of array elements. Index must not exceed 28000.
Error in tabular/dotParenReference (line 111)
b = b(rowIndices);
Error in bifercation (line 8)
find((Data.para(i+1)-Data.para(i)) / (Data.Time(i+1)-Data.Time(i)))
diffenrece between time is non zero throughout the period.
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Mathematics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
