This repository has been archived on 2021-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
scientificComputing/projects/project_input_resistance/solution/exponentialDecay.m

6 lines
68 B
Matlab

function y = exponentialDecay(p, x)
y = p(1) .* exp(-x./p(2));