Matlab :Continuous Convolution and plotting
问题 I would like to compute circular convolution of Input Concentration values with Output concentration equation and plot accordingly, following are my functions The function for Input Concentration is computed as follows and the plot of Concentration Vs time is plotted function c = Input_function(t, a1, a2, a3, b1, b2, b3, td, tmax) c = zeros(size(t)); ind = (t > td) & (t < tmax); c(ind) = (t(ind) - td) ./ (tmax - td) * (a1 + a2 + a3); ind = (t >= tmax); c(ind) = a1 * exp(-b1 * (t(ind) - tmax))