Location: cellLib @ e4a1c78339a5 / BG_fit / square_error.m

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-03-17 11:21:28+13:00
Desc:
Move constants to the interface
Permanent Source URI:
https://models.cellml.org/workspace/6bc/rawfile/e4a1c78339a523940c1c524aa31ef4affc9ccaf8/BG_fit/square_error.m

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