Effacer les filtres
Effacer les filtres

how to plot the graph for the following data with respect to x axis and y axis.

2 vues (au cours des 30 derniers jours)
X axis data (2,4,6,8,10) y axis data(1.35,4.16,4.12,4.83,4.35)
could anyone help me to do this.

Réponse acceptée

YT
YT le 5 Mar 2018
You can plot it easily like so:
x_data = [2,4,6,8,10];
y_data = [1.35,4.16,4.12,4.83,4.35];
plot(x_data,y_data);
You can check the options for plot by typing help plot in the command window
  2 commentaires
Prabha Kumaresan
Prabha Kumaresan le 5 Mar 2018
thanks i got the graph and i have attached it. In that graph the data to be plotted in the x axis are (2,4,6,8,10) but i am getting( 2,3,4,5,6,7,8,9,10).how to remove 3,5,7,9.
Rik
Rik le 5 Mar 2018
To clarify: the x-tick have no real connection with the data you plotted. If you had plotted x_data = [2.5,4.5,6.5,8.5,10.5];, you would still see the same integers as the x-tick labels.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by