MATLAB: How to convert the solid line into dashed line in the images during overlay of images

convert solid line to dashed line

when i overlay the images i get solid line marking on the image. i want to convert that solid line into dashed lines.. can someone pls help me with codes or instruction for converting the solid line into dashed line

Best Answer

h = plot(rand(10,1)); % this creates a handle to the figure
set(h,'LineStyle','--') % this convert the solid line into dash
Related Question