Hi,
It is supposed that column A is sample data, column B is signal data and column C is an instrument response while your multiple exponential decay function is:
Now you can add extra parameters as needed for the two extra exponentials (ie, A2, t2, A3 and t3). You also need to change the exponential equation in code:
vSignal = A1 * exp( -t1*vSample ) + A2 * exp( -t2*vSample ) + A3 * exp( -t3*vSample );
Note that you should estimate the initial values for parameters before you perform fitting. Good initial values are the key to perform a perfect fitting with convolution.
Hope it helps.
Regards,
Yuki
OriginLab