Comparing data sets with similar trends

16 visualizaciones (últimos 30 días)
Andrew Luce
Andrew Luce el 6 de Feb. de 2020
Comentada: Guillaume el 9 de Feb. de 2020
Hello,
I was wondering if there was a way to compare the two data sets I have below represented by the graphs. I created this random path between points (1,1) and (10,10) (the orange line) . Through some other things, I was able to get a line that is similarly shaped to orange one. The data is represented by the blue line. Ignoring the rotation for now, is there a mathmateical way to disern the similarity in the trend in the data or the shape of the lines?
Thank you
Andrew
Capture.PNG
  2 comentarios
the cyclist
the cyclist el 6 de Feb. de 2020
Can you upload that data that are being plotted, in a MAT file?
If those data are stored in vectors x1 and y1 for the orange line, and x2,y2 for the blue line, then a simple metric would be
D = sum((x1-x2).^2 + (y1-y2).^2);
which is just the sum of squared distance between each point.
If there are not an equal number of points in each line, it will be a bit trickier.
And if your response is "that won't work because <this reason>", then your reason will be a clue about how to improve the metric.
Andrew Luce
Andrew Luce el 7 de Feb. de 2020
I actually do not have the data on these specfic lines anymore. However, I have another set with the same deal. P is esstinally is the orange line and Coordinates_scaled is the blue line. Both lines do have different number of coordiates

Iniciar sesión para comentar.

Respuestas (1)

Guillaume
Guillaume el 6 de Feb. de 2020
It depends on what you call similar.
If I understood correctly, here you could transform your path in a vector of left and right turns and compare the two vectors. If they're identical the graphs are similar.
  2 comentarios
Andrew Luce
Andrew Luce el 7 de Feb. de 2020
Thank you for your response, what do you mean a vector of left and right turns?
Guillaume
Guillaume el 9 de Feb. de 2020
What I meant is that your random walk is a series of left and right turns. So, you could transform each graph into a vector of left and right symbols. For example, P in your Lines.mat would be:
>> getturns(P) %simple function I've written
ans =
'RLRRLLLRRRLLRLLRLRRL'
If you build the same vector for each graph, they'll be identical (in that they describe the same sequence of right and left turns) if the vectors are identical.
Except, that your second graph CoordinatesScaled is not a series of left and right turns, your turns have some 45 degrees bevels, so my idea is not applicable.

Iniciar sesión para comentar.

Categorías

Más información sobre Directed Graphs en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by