How can i plot graphs?

2 次查看(过去 30 天)
Please,how can i plot graph on rain attenuation,maximum ration combining and equal gain combining site and path diversity?

采纳的回答

ANKUR KUMAR
ANKUR KUMAR 2018-10-7
"How can i plot graphs?" Here is the sample program of plotting multiple lines in matlab.
clc
clear
var1=rand(1,15);
var2=rand(1,15);
var3=rand(1,15);
hold on
plot([1:15],var1,'r')
plot([1:15],var2,'b')
plot([1:15],var3,'k')
legend({'var 1','var 2','var 3'})
I hope you have gone through the basics of matlab plotting.
  1 个评论
MOBOLAJI SODUNKE
MOBOLAJI SODUNKE 2018-10-9
ANKUR KUMAR,Thanks so much.Please inbox me your contact in my mail address: bolojomapa84@yahoo.com

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Directed Graphs 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by