필터 지우기
필터 지우기

Change color style of plot

조회 수: 43 (최근 30일)
monkey_matlab
monkey_matlab 2015년 10월 22일
답변: TastyPastry 2015년 10월 22일
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)');

채택된 답변

TastyPastry
TastyPastry 2015년 10월 22일
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개)

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by