Is there a way to configure the style of references to memoir's built-in subfloats, i.e. when using \subcaptionref, and \ref? For example, is it possible to remove the parentheses?
From the memoir documentation:
Figure \ref{fig:twosubfig} has two subfigures,
namely \ref{sf:1}, \subcaptionref{sf:2}.
\begin{figure}
\centering
\subbottom[Subfigure 1]{\fbox{SUBFIGURE ONE}\label{sf:1}}
\hfill
\subbottom[Subfigure 2]{\fbox{SUBFIGURE TWO}\label{sf:2}}
\caption{Figure with two subfigures} \label{fig:twosubfig}
\end{figure}
produces
Figure 10.19 has two subfigures, namely 10.19(a), (b).
Can this be changed to e.g.
Figure 10.19 has two subfigures, namely 10.19a, b.
To be clear, the changes should preferably only apply to the reference, not the subcaption itself.

