Effacer les filtres
Effacer les filtres

How to plot different length vectors against each other?

4 vues (au cours des 30 derniers jours)
Keshav
Keshav le 6 Déc 2023
Commenté : Steven Lord le 6 Déc 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.

Réponse acceptée

Torsten
Torsten le 6 Déc 2023
Déplacé(e) : Torsten le 6 Déc 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 commentaire
Steven Lord
Steven Lord le 6 Déc 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.

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by