Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How can I change the line color in a graph using plot?

1 回表示 (過去 30 日間)
Yasir Ghazi
Yasir Ghazi 2017 年 11 月 17 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
to plot this figure
clc;
clear all;
close all;
fs = 1000;
t = 0:1/fs:0.2;
Vm = 720; % Volt
f0 = 50 ;% Hz
q = 0.5 ; % Voltage Gain
alpha = 0;
Va = Vm*q*cos(2*pi*f0*t + alpha);
Vb = Vm*(q + 0.2*q*(t == 0.1)).*cos(2*pi*f0*t + alpha);
figure,
plot(t,Va,'r',t,Vb,'b');
xlabel('Time');
ylabel('Va and Vb');
  1 件のコメント
Walter Roberson
Walter Roberson 2017 年 11 月 17 日
Your code
plot(t,Va,'r',t,Vb,'b');
already sets the color of the Va plot to be red and of the Vb plot to be blue.

回答 (0 件)

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by