Location: BG_ns_Ca @ 6da40f865c78 / matlab_parameter_fitting / square_error.m
- Author:
- Shelley Fong <s.fong@auckland.ac.nz>
- Date:
- 2022-03-17 11:11:36+13:00
- Desc:
- Updated parameter finding and cellml script
- Permanent Source URI:
- https://models.physiomeproject.org/workspace/83b/rawfile/6da40f865c787757867dbc173c29f385f7a3bf29/matlab_parameter_fitting/square_error.m
function result = square_error(vector) if ~iscolumn(vector) vector = transpose(vector); end result = transpose(vector)*vector; end