This repository has been archived on 2021-05-17. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
scientificComputing/regression/exercises/expdecay.m
2020-12-20 23:16:56 +01:00

5 lines
103 B
Matlab

function x = expdecay(t, tau)
% return the exponential function x = e^{-t/tau}
x = exp(-t./tau);
end