提取采样时间点

时间:2014-05-01 00:43:53

标签: signal-processing matlab sampling

我有一个matlab曲线,我想从中绘制并找到17个不同时间样本的浓度值

以下是我希望在17个不同时间点提取浓度值的曲线

first

以下是以分钟为单位的时间点

t = 0,0.25,0.50,1,1.5,2,3,4,9,14,19,24,29,34,39,44,49. minutes samples

以下是我用来绘制上图的函数

function c_t = output_function_constrainedK2(t, a1, a2, a3,b1,b2,b3,td, tmax,k1,k2,k3)



K_1   = (k1*k2)/(k2+k3);
K_2   = (k1*k3)/(k2+k3);
DV_free= k1/(k2+k3);


c_t = zeros(size(t));

ind = (t > td) & (t < tmax);


c_t(ind)= conv(((t(ind) - td) ./ (tmax - td) * (a1 + a2 + a3)),(K_1*exp(-(k2+k3)*t(ind)+K_2)),'same');

ind = (t >= tmax);


c_t(ind)= conv((a1 * exp(-b1 * (t(ind) - tmax))+ a2 * exp(-b2 * (t(ind) - tmax))) + a3 * exp(-b3 * (t(ind) - tmax)),(K_1*exp(-(k2+k3)*t(ind)+K_2)),'same');



plot(t,c_t);
axis([0 50  0 1400]);
xlabel('Time[mins]');
ylabel('concentration [Mbq]');
title('Model :Constrained K2');
end

如果可能,请告诉我一些如何改变上述功能的建议,以便我能在上述17个不同的时间点提出浓度值

以下是我用来提出曲线的输入值

 output_function_constrainedK2(0:0.1:50,2501,18500,65000,0.5,0.7,0.3,3,8,0.014,0.051,0.07)

1 个答案:

答案 0 :(得分:1)

这将在您想要的时间点为您提供浓度值。您必须将其放在output_function_constrainedK2函数中,以便可以访问变量tc_t

T=[0 0.25 0.50 1 1.5 2 3 4 9 14 19 24 29 34 39 44 49];
concentration=interp1(t,c_t,T)