How to make comparison plot in a struct
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ram Prasanth
el 12 de Feb. de 2024
Comentada: Ram Prasanth
el 13 de Feb. de 2024
I have a time series data of Y-position of the vehicle trajectory inside a struct of 1*41 struct.
I want to compare each time step of all the 41 timeseries across.
This is the code i created but its not working. can you help me with these?

Code is:
figure;
for m = 1:41
hold on;
plot(egoStatesRefTrajectory.y(:,1),egoStatesRefTrajectory.y(:,2))
end
0 comentarios
Respuesta aceptada
VBBV
el 12 de Feb. de 2024
Editada: VBBV
el 13 de Feb. de 2024
plot(egoStatesRefTrajectory(m).y(:,1),egoStatesRefTrajectory(m).y(:,2))
7 comentarios
VBBV
el 13 de Feb. de 2024
Ok, It seems like data is nested in different structures from which you extract. The problem in your question however is shown in highly simplified form for anyone to comprehend.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

