I cannot see your attachment, but you can use any char you wish for your plot, just using text instead of plot:
x = linspace(0,1);
y = x.^2;
figure,plot(x,y,'*')
figure,text(x,y,'f')
figure,text(x,y,'@')
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!