diff options
author | Théo de la Hogue | 2023-08-28 15:23:00 +0200 |
---|---|---|
committer | Théo de la Hogue | 2023-08-28 15:23:00 +0200 |
commit | 4358c40d358c811a46b3ec5325d9475c887c4b9e (patch) | |
tree | 8adc5ef53d618b22868cd229c4acc5c487655dc1 /docs/user_guide/timestamped_data/data_synchronisation.md | |
parent | 4e839f353700011457f52b305312ddf0217069a9 (diff) | |
download | argaze-4358c40d358c811a46b3ec5325d9475c887c4b9e.zip argaze-4358c40d358c811a46b3ec5325d9475c887c4b9e.tar.gz argaze-4358c40d358c811a46b3ec5325d9475c887c4b9e.tar.bz2 argaze-4358c40d358c811a46b3ec5325d9475c887c4b9e.tar.xz |
Fixing documentation linking.
Diffstat (limited to 'docs/user_guide/timestamped_data/data_synchronisation.md')
-rw-r--r-- | docs/user_guide/timestamped_data/data_synchronisation.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/user_guide/timestamped_data/data_synchronisation.md b/docs/user_guide/timestamped_data/data_synchronisation.md index 24a474c..5190eab 100644 --- a/docs/user_guide/timestamped_data/data_synchronisation.md +++ b/docs/user_guide/timestamped_data/data_synchronisation.md @@ -3,13 +3,13 @@ Data synchronisation Recorded data needs to be synchronized to link them before further processings. -The [TimeStampedBuffer](../../../argaze/#argaze.DataStructures.TimeStampedBuffer) class provides various methods to help in such task. +The [TimeStampedBuffer](../../argaze.md/#argaze.DataStructures.TimeStampedBuffer) class provides various methods to help in such task. ## Pop last before ![Pop last before](../../img/pop_last_before.png) -The code below shows how to use [pop_last_before](../../../argaze/#argaze.DataStructures.TimeStampedBuffer.pop_last_before) method in order to synchronise two timestamped data buffers with different timestamps: +The code below shows how to use [pop_last_before](../../argaze.md/#argaze.DataStructures.TimeStampedBuffer.pop_last_before) method in order to synchronise two timestamped data buffers with different timestamps: ``` python from argaze import DataStructures @@ -34,7 +34,7 @@ for A_ts, A_data in A_data_record.items(): ![Pop last until](../../img/pop_last_until.png) -The code below shows how to use [pop_last_until](../../../argaze/#argaze.DataStructures.TimeStampedBuffer.pop_last_until) method in order to synchronise two timestamped data buffers with different timestamps: +The code below shows how to use [pop_last_until](../../argaze.md/#argaze.DataStructures.TimeStampedBuffer.pop_last_until) method in order to synchronise two timestamped data buffers with different timestamps: ``` python from argaze import DataStructures @@ -59,7 +59,7 @@ for A_ts, A_data in A_data_record.items(): ![Get last before](../../img/get_last_before.png) -The code below shows how to use [get_last_before](../../../argaze/#argaze.DataStructures.TimeStampedBuffer.get_last_before) method in order to synchronise two timestamped data buffers with different timestamps: +The code below shows how to use [get_last_before](../../argaze.md/#argaze.DataStructures.TimeStampedBuffer.get_last_before) method in order to synchronise two timestamped data buffers with different timestamps: ``` python from argaze import DataStructures @@ -84,7 +84,7 @@ for A_ts, A_data in A_data_record.items(): ![Get last until](../../img/get_last_until.png) -The code below shows how to use [get_last_until](../../../argaze/#argaze.DataStructures.TimeStampedBuffer.get_last_until) method in order to synchronise two timestamped data buffers with different timestamps: +The code below shows how to use [get_last_until](../../argaze.md/#argaze.DataStructures.TimeStampedBuffer.get_last_until) method in order to synchronise two timestamped data buffers with different timestamps: ``` python from argaze import DataStructures |