How to hide the number on the constellation points in MATLAB? -


enter image description here

this how plot constellation:

hmod = comm.rectangularqammodulator('modulationorder',32, ... 'symbolmapping','binary');  constellation(hmod) 

but how hide numbers above each constellation point?

i looked on mathworks website did not find looking for.

the following code job:

hmod = comm.rectangularqammodulator('modulationorder',32, ... 'symbolmapping','binary');  constellation(hmod) delete(findobj(gca,'type','text'));  

its output is:

enter image description here


Comments

Popular posts from this blog

ios - RestKit 0.20 — CoreData: error: Failed to call designated initializer on NSManagedObject class (again) -

laravel - PDOException in Connector.php line 55: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) -

java - Digest auth with Spring Security using javaconfig -