Location: BG_ns_Ca @ 38caca244f79 / matlab_parameter_fitting / square_error.m

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

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