Location: BG_ns_Ca @ 3b97019b2b2b / matlab_parameter_fitting / square_error.m

Author:
Shelley Fong <s.fong@auckland.ac.nz>
Date:
2022-03-17 14:37:10+13:00
Desc:
Rename
Permanent Source URI:
https://models.physiomeproject.org/workspace/83b/rawfile/3b97019b2b2bb566467f9431a64a8207b6a49c02/matlab_parameter_fitting/square_error.m

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