Borrar filtros
Borrar filtros

How to plot different length vectors against each other?

4 visualizaciones (últimos 30 días)
Keshav
Keshav el 6 de Dic. de 2023
Comentada: Steven Lord el 6 de Dic. de 2023
I've used ode45 to find t against x and t against y. The plot I want to create is of x against y.
However the x vector has a length of 113 compared to 1849 for y because of the differences in timestep.
Is there a way to interpolate and plot(x,y)? Or perhaps to specify that ode45 creates more x values.

Respuesta aceptada

Torsten
Torsten el 6 de Dic. de 2023
Movida: Torsten el 6 de Dic. de 2023
However the x vector has a length of 113 compared to 1849 for y because of the differences in timestep.
Solve for x and y together in one call to ode45. Then the solutions for x and y will have the same number of elements.
  1 comentario
Steven Lord
Steven Lord el 6 de Dic. de 2023
Or if you must solve them in separate calls to ode45, either pass the times from the first as the tspan in the second call or call them each with one output and use the deval function on that struct output to evaluate the solutions at a common list of times.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Ordinary Differential Equations en Help Center y File Exchange.

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by