What to do in MATLAB
Submit one file named pendulum_app.mlapp (note, when using the app designer in MATLAB, the default file type is .mlapp)
Create an app where the user defines
the Initial Angle of the pendulum using a slider
values should range from -3 radians to 3 radians
this value should be used as the initial value for theta
the initial value for omega should be 0
Pendulum Length
this value will be used as L in the equations above
Length of Simulation in seconds
this value will be used to determine how long you should solve the ODE for
Your app should use the constant values of
h = 0.04;
g = 9.81;
Your app should create two plots - one that tracks the angle theta as a function of time and one that shows the motion of the pendulum. See the video below for more details


