MATLAB:如何使大括号显示图例?

MATLAB: How to make the curly brackets show with legend?

我写了这个 MATLAB 代码:

legend('\alpha={1,2});

得到 α={1,2} 但我得到 α=1,2。大括号不显示。如何使大括号显示图例?

在花括号前放置反斜杠

legend('\alpha=\{1,2\}');