read specific data from a given row and column from table
Show older comments
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.
1 Comment
Accepted Answer
More Answers (0)
Categories
Find more on MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!