Recent content by haiisrael

  1. H

    MATLAB Matlab programming using shooting method, Euler and Runge Ketta methods

    Could you please check my last ODE hereafter? function [dz] = Dz2(t, z) %initial conditions persistent hasbounced; g=9.81; %gravity constant M=50; %Mass of rover R=300; %Damper coefficient k=10000; %spring stiffness V=((z(2))^2)+((z(4))^2); %Velocity theta=atan2((z(4)),(z(2))); %density...
  2. H

    MATLAB Matlab programming using shooting method, Euler and Runge Ketta methods

    Could you please check my last ODE hereafter? function [dz] = Dz2(t, z) %initial conditions persistent hasbounced; g=9.81; %gravity constant M=50; %Mass of rover R=300; %Damper coefficient k=10000; %spring stiffness V=((z(2))^2)+((z(4))^2); %Velocity...
  3. H

    MATLAB Matlab programming using shooting method, Euler and Runge Ketta methods

    I need help to solve this coursework: MATLAB PROGRAMMING COURSEWORK OBJECTIVES:  Learn to solve engineering problems using MATLAB  Write Euler and Runge-Kutta initial-value ODE solvers  Write a Shooting Method boundary-value ODE solver  Investigate the properties of the solvers ...
Back
Top