Message Boards Message Boards

0
|
6517 Views
|
3 Replies
|
3 Total Likes
View groups...
Share
Share this post:

plot colour -Plot style

Posted 9 years ago

Hi,

I have a question about customising the plot line colours.. for example in the below figure

enter image description here

I would like to use the same colour, but adjust the shade and make a gradient of colour pattern for the plots.. like dark red for the plot D = 2 to a very light red for the plot D = 0.2.. is it possible in Mathematica?

POSTED BY: ash ash
3 Replies
Posted 9 years ago

I suggest looking up Hue, Table, and PlotStyle. But his will work with the code as used:

Plot[functions, {x, 0, 1}, PlotStyle -> Reverse[colors]]
POSTED BY: David Keith
Posted 9 years ago

Here is one method:

functions = Table[Log10[a x], {a, 1, 5, 1}];

colors = Table[Hue[1, s], {s, 1, .2, -1/Length[functions]}] // N;

Plot[functions, {x, 0, 1}, PlotStyle -> colors]

enter image description here

POSTED BY: David Keith
Posted 9 years ago

Thanks! it helped! I actually did not follow the code well, but it worked on copying and pasting.. How would it be if the colour shading is in the opposite direction?

POSTED BY: ash ash
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract