Location: BG_ns_Ca @ d238a25d7c74 / matlab_parameter_fitting / square_error.m

Author:
Shelley Fong <s.fong@auckland.ac.nz>
Date:
2022-03-17 14:20:13+13:00
Desc:
Adding fluxes for Na and K species
Permanent Source URI:
https://models.physiomeproject.org/workspace/83b/rawfile/d238a25d7c74467569e0ea6aa73092bbcd9eb17e/matlab_parameter_fitting/square_error.m

function result = square_error(vector)
    if ~iscolumn(vector)
        vector = transpose(vector);
    end
    result = transpose(vector)*vector;
end