MATLAB: Plot / names for points

namesplotpointssubplot

Hey Guys. How can I get some space between the points (x,y) and thier "names".
text(x,y1,names,'Interpreter','none','rotation',90)

Best Answer

I always add a space:
strcat({' '},names)
Best regards, Michael
Related Question