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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started