Case 2: Steady State Model Find the initial values for rabbit and fox population (rss,fss) that result in a non-zero steady-state condition. Use (rss,fss) as initial conditions and show you get the proper response. You will likely need to work this on paper (manipulating equations) before coding. Equations to use for steady state: dr/dt = 0) = GRR*r -(EFR*f)*r df/dt = 0 = GRF*f +(ERF*r)*f o O O . Inputs parameters= (GRR,EFR, GRF, ERF] GRR, growth rate of rabbits EFR, effect of foxes on rabbit increase GRF, growth rate of foxes ERF, effect of rabbits on fox increase timedata= [tinit,tfinal,delt] o tinit, time at the start of the model run tfinal, time at the end of the model run o delt, the size of the time step in Euler's method Outputs rss, fss rabbit and fox initial conditions that give steady state rvec,fvec rabbit and fox histories, using rss, fss as initial conditions Function Setup function (rss,fss,rvec,fvec)= Predator Prey_2_fcn(parameters,timedata) % Your code here end Test Case 2 O solutions submitted (max: 4) Enter your function trom Test Case 2 into the space below. Click the run button to test your code output using the provided script Click the submit button to have your work assessed You have a 4 submission limit Function e Reset MATLAB Documentation 1 function Irss, tss,rvec, Ivec1=PredatorPrey_2_fen(paraneters,timedata) 2 Copy and paste your code here end Code to call your function e Red 1 Below is a script that will execute and plot your function for some given Sample parameters. 2 Try adjusting the parameters to see if the model behaves as you would predict GRR 0.4; 4 EFR 0.832; GRF-1.8: 6 ERFs 0.02: 7 tinits 0. 8 tfinal= 60.: 9 delts 0.05; 10 11 parameters2= [GRR, EFR, GRF, ERF 1: 12 timedata2. Itinit,tfinal, delt); 11 rss, tss,rvec, fvec) - PredatorPrey_2_foni parameters, tinedata2): 15 hold on 16 plotirvec) 17 plotifvec, 1 xlabel step #1 19 ytabell population 20 legend'rvec tvec 21 hold of > Run Function