read specific data from a given row and column from table
Mostrar comentarios más antiguos
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 comentario
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
