I would like to know why a picture appears in the image in the 2dB column in the 10 ^ 0 line and how can I delete it without deleting the markers on the blue line, what do I want?
The code to do the plot is this:
#=========================== Gráfico=====================================
plt.figure(1)
plt.plot(EbNo_theory, ber_MFSK, 'b-', EbNodB, ber, 'ko')
plt.axis([0, 8, 1e-4, 1e0])
plt.xscale('linear')
plt.yscale('log')
plt.xlabel('EbNo(dB)')
plt.ylabel('BER')
plt.grid(True)
plt.title('BER sem repetição(Teórico) - FSK Coerente com M=2')
#=======================Legendas==================
line_up, = plt.plot([1,2,3], label='Teórico', color='blue')
line_down, = plt.plot([2,3,1], marker='o', markersize=4, label='Simulado', color='black')
plt.legend(handles=[line_up, line_down])