I have some data to be plotted in one figure. Noise data is ruining other data. How can I change the transparency level of a given data? In my case, I'm using hold all
command for plotting several data. One of the solution is to change the LineWidth
but I couldn't find a way for transparency option. I've tried alpha
as follows
plot( noise_x, 'k', 'LineWidth', 1, 'alpha', 0.2)
but with no luck.