如何在 MATLAB 中隐藏星座点上的数字?
How to hide the number on the constellation points in MATLAB?
这就是你绘制星座的方式:
hMod = comm.RectangularQAMModulator('ModulationOrder',32, ...
'SymbolMapping','binary');
constellation(hMod)
但是如何隐藏每个星座点上方的数字呢?
我查看了 Mathworks 网站,但没有找到我要找的东西。
以下代码将完成这项工作:
hMod = comm.RectangularQAMModulator('ModulationOrder',32, ...
'SymbolMapping','binary');
constellation(hMod)
delete(findobj(gca,'Type','Text'));
它的输出是:
这就是你绘制星座的方式:
hMod = comm.RectangularQAMModulator('ModulationOrder',32, ...
'SymbolMapping','binary');
constellation(hMod)
但是如何隐藏每个星座点上方的数字呢?
我查看了 Mathworks 网站,但没有找到我要找的东西。
以下代码将完成这项工作:
hMod = comm.RectangularQAMModulator('ModulationOrder',32, ...
'SymbolMapping','binary');
constellation(hMod)
delete(findobj(gca,'Type','Text'));
它的输出是: