A small rocket is being designed to make wind shear measurem
Solution
Part 2a)
In Matlab, first we need to define the domain where we want to solve the problem. In 2a, It is defined that the domain is t=0 to t=100 with an interval of 2 sec.
Please find the Matlab code below.
t = 0:2:100; //This step is defining the domain space between 0 - 100 with 2 sec interval.
h = 2.13*t^2 - 0.0013*t^4 + 0.000034*t^4.751; // This step is defining the function h(t)
plot [t , h]; //This step will plot the function h wrt t
T = table (h,\'RowNames\',t) ;
T = (Press Enter) // This tep will tabulate all the funtion h wrt t.
Part 2b)
max_val = max (h) (Press Enter) //This step will indicate the max value of h in the indicated domain.
Part 2c)
index_max_val = find (h = max_val) //This step will indicate the index value where the H is maximum
Thanks, in case of any query, please feel free to feedback.
