makeMarkerFunction.m
% This function is part of the NMSM Pipeline, see file for full license.
%
% This function returns the function handle to adjust the marker position
% for the given marker name and axis.
%
% (string, string) -> (function)
% Returns the appropriate function for given input parameters
function fn = makeMarkerFunction(markerName, ...
axis)
fn = @(value, model) adjustMarkerPosition(model, markerName, value, ...
axis);
end