Change color style of plot
12 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
monkey_matlab
le 22 Oct 2015
Réponse apportée : TastyPastry
le 22 Oct 2015
Hello,
I was attempting to change the color of one of the plots in my graph to a specific color but I could not get the program to work. Can you help me to change the colors of the plots. Here is my code:
tone = linspace(0,10000,10);
% Modulation Flatness Data
Room = randi([0,100],10,1);
Cold = randi([0,100],10,1);
Hot = randi([0,100],10,1);
figure
semilogx(tone, Room, 'Color',[1,0.4,0.6], tone, Cold, 'b', tone, Hot, 'r'); grid on;
legend('RM', 'Hot', 'Cold');
xlabel('Audio Tone (Hz)'); ylabel('Data (dB)');
0 commentaires
Réponse acceptée
TastyPastry
le 22 Oct 2015
I just split up the lines because semilogx() was being annoying:
semilogx(tone, Room, 'Color',[1,0.4,0.6]);
hold on
semilogx(tone, Cold, 'b');
semilogx(tone, Hot, 'r');
hold off
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Line Plots dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!