Question: Function Overview Write a MATLAB function that accepts four inputs C, r, K and t and outputs bacteria population. The equation for bacteria population is
Function Overview
Write a MATLAB function that accepts four inputs C, r, K and t and outputs bacteria population. The equation for bacteria population is provided within your portfolio.
Function Inputs
C - A scalar parameter within the bacteria population equation.
r - A scalar parameter within the bacteria population equation.
K - A scalar parameter within the bacteria population equation.
t - A scalar or vector representing time (in days).
Function Outputs
BacteriaPop - The bacteria population.
Function Template
function BacteriaPop = bacteria_count(C,r,K,t)
%INSERT CODE HERE
end
Function Example
If your function is correct, applying bacteria_count(500,1,100,0:2) should return [83.3333,93.1467,97.3646].
Equation for bacteria growth:

Cert B(t) = 1+Cert
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
