https://git.exeter.ac.uk/mv286/kndy-parameter-inference
Raw File
Tip revision: f5585f5f09d62a2569d21def31dc779774bc2476 authored by mv286 on 15 July 2021, 12:46:14 UTC
Deleting README.md
Tip revision: f5585f5
model_IC.m
% aux function returning vector with the initial state of the system 
function y = model_IC(params, nparticles)
    y = zeros(nparticles, 3*params.N);
    
end

back to top