how to solve ode if value of constant is vector

5 vues (au cours des 30 derniers jours)
prajyot gajbhiye
prajyot gajbhiye le 21 Oct 2020
Modifié(e) : Ameer Hamza le 21 Oct 2020
function [dydt] = diffvar(t,y)
dydt=-k*y+a;
end
end
in this if a is vector how to solve

Réponses (1)

Ameer Hamza
Ameer Hamza le 21 Oct 2020
Modifié(e) : Ameer Hamza le 21 Oct 2020
If k and a are constant vectors of equal length the following will work
k = rand(10, 1);
a = rand(10, 1);
IC = zeros(10, 1);
tspan = [0 10];
[t, y] = ode45(@(t,y) diffvar(t,y,k,a), tspan, IC)
plot(t, y)
function [dydt] = diffvar(t,y,k,a)
dydt=-k.*y+a;
end

Catégories

En savoir plus sur Programming dans Help Center et File Exchange

Tags

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by