if i have a 3 matrix A B and C with dimesion of 400X2 and the first row is the time for all A B C .how can i check if the matrix A, B and C all took place at the same time (i.e. to check that each row of measurements took place at the same time)

2 Commenti

Star Strider
Star Strider il 24 Gen 2016
I believe you mean first column.
What time format are the time columns in?
Do you want to know specifically if particular rows are not equal, Or do you only need to know if they all are or aren’t equal?
i wanted to know if all the first colum of matrix A B and C are the same and if not rearrage it to be the same .

Accedi per commentare.

 Risposta accettata

the cyclist
the cyclist il 24 Gen 2016
One way is to use the isequal function.
isequal(A(1,:),B(1,:))
isequal(A(1,:),C(1,:))
If they might only be approximately equal, and not exactly equal, you could test using a tolerance.

1 Commento

nice one . thank you very much i really appriciate it.

Accedi per commentare.

Più risposte (0)

Categorie

Community Treasure Hunt

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

Start Hunting!

Translated by