How can i plot graphs?

조회 수: 2 (최근 30일)
MOBOLAJI SODUNKE
MOBOLAJI SODUNKE 2018년 10월 7일
댓글: MOBOLAJI SODUNKE 2018년 10월 9일
Please,how can i plot graph on rain attenuation,maximum ration combining and equal gain combining site and path diversity?
  댓글 수: 1
Kevin Chng
Kevin Chng 2018년 10월 7일
Hi Mobolaji Sudunke,
I'm not sure what are you trying to ask. However, for plotting graph
plot(xvalue,yvalue)
More information, you may refer to
or use the plot tab

댓글을 달려면 로그인하십시오.

채택된 답변

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