Location: BG_Ks @ 71342cc75ad6 / matlab_parameter_fitting / square_error.m

Author:
Shelley Fong <s.fong@auckland.ac.nz>
Date:
2022-03-07 09:59:03+13:00
Desc:
Renaming channel
Permanent Source URI:
https://models.cellml.org/workspace/82d/rawfile/71342cc75ad6de5b67de741de1bd216f62a7d5af/matlab_parameter_fitting/square_error.m

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