How to plot a line of a certain color?
Afficher commentaires plus anciens
I have 7 lines on a single plot. I dont want to use the 'y' color code. How can I make my own color? I also want this line to have asterisks along it. So currently I have 'y*-' but again I dont want to use yellow
Réponse acceptée
Plus de réponses (2)
Image Analyst
le 15 Août 2014
10 votes
Of course Chad's answer is best . But I just thought I'd show people how to change the default color order that you get when you plot lines without specifying the color. Ever wonder how it plots blue first, then dark green, then red, then cyan, etc.? Ever want to change the default order so that it plots curves with the color order you want instead of the default color order, and without having to specify the color in every single call to plot()? If so, run the attached demo.
1 commentaire
MathWorks Support Team
le 3 Sep 2020
Starting in R2019b there is a new colororder command that you can use to change the colors of new and existing lines. This command takes RGB colors, color names, and hexadecimal color codes as input. For additional details about managing the colors and line styles in plots, see Control Colors, Line Styles, and Markers in Plots in the MATLAB documentation.
David
le 6 Mar 2023
Déplacé(e) : Image Analyst
le 6 Mar 2023
0 votes
To plot a line of a certain color in a graph or chart, you can use the color parameter in the plotting function of your programming language. Here's an example of how to do it in Python using the Matplotlib library:
import matplotlib.pyplot as plt
# Generate some data to plot
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# Plot the line with a specific color
# Add axis labels and a title
plt.xlabel('X-axis label')
plt.ylabel('Y-axis label')
plt.title('Plot with a red line')
# Show the plot
plt.show()
In this example, the plot function is used to plot the data points, and the color parameter is set to 'red' to change the color of the line to red. You can replace 'red' with any other valid color name or hexadecimal color code to change the line color to your desired color.
Catégories
En savoir plus sur Bar Plots dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!