Azzera filtri
Azzera filtri

Plotting graph with given points

127 visualizzazioni (ultimi 30 giorni)
Odien
Odien il 5 Ago 2015
Commentato: DGM il 6 Mar 2024
basically we always plot graph of certain function such as x = 0 : 1 : 10 y = sinx; plot(x,y,'-r^')
lets say given x = 2 y = 15 x = 3 y = 8 x = 8 y = 30 the point is random, how to plot this graph?

Risposta accettata

Danny Alvarez
Danny Alvarez il 5 Ago 2015
x=[2,3,8]; y=[15,8,30]; plot(x.y)
or
plot(x,y,'o') for dots
  4 Commenti
Jorge Luis Dominguez Martinez
Spostato: DGM il 6 Mar 2024
From the Graph window, you can go to File -> Save as
or click on Save Figure
and then select JPEG image (*jpg) as a type .
DGM
DGM il 6 Mar 2024
... and save it as a PNG, not a JPG. Never save plots as a JPG.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by