How to plot different length vectors against each other?

1 次查看(过去 30 天)
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.

采纳的回答

Torsten
Torsten 2023-12-6
移动:Torsten 2023-12-6
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 个评论
Steven Lord
Steven Lord 2023-12-6
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.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Ordinary Differential Equations 的更多信息

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by