- #1
wokay
- 11
- 0
Hello,
Suppose given a sample data of particle traveling with following co-ordinates:
x | y
[(2, 2),
(4, 2),
(4, 3),
(4, 4),
(1, 3),
(1, 1),
(4, 4),
(4, 1),
(0, 4),
(4, 2)]
we want to calculate the Average velocity. How do we find it?
If we use difference between initial and last won't give the average as the particle might have traveled a lot prior to that.
I have a data of around 1000 points where the particle traveled. And thus would like to find the same. Can you help me solving it.
Thanks.
Suppose given a sample data of particle traveling with following co-ordinates:
x | y
[(2, 2),
(4, 2),
(4, 3),
(4, 4),
(1, 3),
(1, 1),
(4, 4),
(4, 1),
(0, 4),
(4, 2)]
we want to calculate the Average velocity. How do we find it?
If we use difference between initial and last won't give the average as the particle might have traveled a lot prior to that.
I have a data of around 1000 points where the particle traveled. And thus would like to find the same. Can you help me solving it.
Thanks.