Location: BG_TCC @ f7323da5e7d5 / matlab_parameter_fitting / square_error.m

Author:
Shelley Fong <s.fong@auckland.ac.nz>
Date:
2022-03-28 16:58:44+13:00
Desc:
With channel density checked using patch clamp against kinetic model
Permanent Source URI:
https://models.cellml.org/workspace/831/rawfile/f7323da5e7d5ea28a8a7bfa4d6e503e98d64b5e1/matlab_parameter_fitting/square_error.m

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