Plotting data as points onto a previously generated graph

3 vues (au cours des 30 derniers jours)
INDS
INDS le 13 Jan 2020
Commenté : Bhaskar R le 13 Jan 2020
I have this data stored as a variable and wanted to plot it onto a graph produced by a different script. I want these to be plotted as points on the graph as opposed to a line. I was wondering what code would be used to do so. Thank you!
(The left column is the y coordinates and the right column is the x coordinates)
ans =
233.0000 0.2200
253.0000 1.0571
257.0000 1.8943
237.0000 2.7057
229.0000 3.5171
242.0000 4.3286
254.0000 5.1686
240.0000 5.8429
242.0000 6.8657
243.0000 7.7314
250.0000 8.5657

Réponse acceptée

Bhaskar R
Bhaskar R le 13 Jan 2020
x = [
233.0000 0.2200
253.0000 1.0571
257.0000 1.8943
237.0000 2.7057
229.0000 3.5171
242.0000 4.3286
254.0000 5.1686
240.0000 5.8429
242.0000 6.8657
243.0000 7.7314
250.0000 8.5657] % your data
plot(x(:, 2), x(:, 1), 'o', 'Color','r'),grid on; % plotting
  2 commentaires
INDS
INDS le 13 Jan 2020
This works perfectly. Thank you!
Bhaskar R
Bhaskar R le 13 Jan 2020
You are welcome !!

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

Community Treasure Hunt

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

Start Hunting!

Translated by