How can i plot graphs?

2 visualizaciones (últimos 30 días)
MOBOLAJI SODUNKE
MOBOLAJI SODUNKE el 7 de Oct. de 2018
Comentada: MOBOLAJI SODUNKE el 9 de Oct. de 2018
Please,how can i plot graph on rain attenuation,maximum ration combining and equal gain combining site and path diversity?
  1 comentario
Kevin Chng
Kevin Chng el 7 de Oct. de 2018
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

Iniciar sesión para comentar.

Respuesta aceptada

ANKUR KUMAR
ANKUR KUMAR el 7 de Oct. de 2018
"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 comentario
MOBOLAJI SODUNKE
MOBOLAJI SODUNKE el 9 de Oct. de 2018
ANKUR KUMAR,Thanks so much.Please inbox me your contact in my mail address: bolojomapa84@yahoo.com

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Directed Graphs en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by