Problem in Plot diagrams

1 次查看(过去 30 天)
ali ani
ali ani 2015-1-23
I want to draw three diagram in one plot and mark them with three different shape such as line, dash, star...
the number of my data is high so the star diagram is very bad.(the up green diagram in picture that i sent)
how i can plot a beautiful star diagram? please see the attachment

回答(1 个)

Alessandro Masullo
Alessandro Masullo 2015-1-23
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,'@')

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by