Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

coloring the individual data in a plot

1 view (last 30 days)
mahesh bvm
mahesh bvm on 20 Sep 2011
Closed: MATLAB Answer Bot on 20 Aug 2021
Can anyone please help me in How to plot a group of vectors which represents a bell shaped curve with different colours? I also want to know which color represents which vector.

Answers (1)

Grzegorz Knor
Grzegorz Knor on 20 Sep 2011
Use hold all before plot and legend after. For example:
x = -6:.1:6;
hold all
for k=1:5
y = exp(-x.^2/k);
plot(x,y)
end
legend('a','b','c','d','e')

This question is closed.

Community Treasure Hunt

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

Start Hunting!