For a homework assignment, my professor asked us to solve a system of differential equations using MATLAB. Using the mathworks website, I did
syms f(t) g(t) h(t)
[f(t), g(t), h(t)] = dsolve(diff(f) == .25*g*h,...
diff(g) == -2/3*f*h,...
diff(h) == .5*f*g, f(0) == 1, g(0) == -2, h(0) == 3)
However, I get an error saying that an explicit equation cannot be solved.