Recent content by bdoherty1994

  1. B

    MATLAB Matlab Code for solving and plotting function x'(t) = 1 + t*sin(t*x)

    syms x y init = 'y(0)=0' dsolve('Dy = 1 + t.*sin(t*y)', 'y(0)=0', 't') I keep coming up with an error.
  2. B

    Matlab code for solving and plotting function x'(t) = 1 + t*sin(t*x)

    Thank you for your help! Which numerical solver would you recommend?
  3. B

    Matlab code for solving and plotting function x'(t) = 1 + t*sin(t*x)

    Homework Statement I am trying to solve and plot the function, x'(t) = 1 + t*sin(t*x) where x(0) = 0 and t_final = 1, in order to compare this exact solution to the approximations of Euler's and Improved Euler's Method. Can anyone help me with the code in order to solve this problem, and then...
  4. B

    MATLAB Matlab Code for solving and plotting function x'(t) = 1 + t*sin(t*x)

    Hi everyone, I am trying to solve and plot the function, x'(t) = 1 + t*sin(t*x) where x(0) = 0 and t_final = 1, in order to compare this exact solution to the approximations of Euler's and Improved Euler's Method. Can anyone help me with the code in order to solve this problem, and then plot...
Back
Top