Plot coordinate pairs: Difference between revisions

Content added Content deleted
(adding Yorick)
Line 573: Line 573:
attributes: {'linecolor': 'black'}]>]</lang>
attributes: {'linecolor': 'black'}]>]</lang>
([http://i32.tinypic.com/x1x6cz.jpg output])
([http://i32.tinypic.com/x1x6cz.jpg output])

=={{header|Yorick}}==
<lang yorick>x = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
y = [2.7, 2.8, 31.4, 38.1, 58.0, 76.2, 100.5, 130.0, 149.3, 180.0];
window, 0;
plmk, y, x;
window, 1;
plg, y, x, marks=0;</lang>
<gallery>
File:Plotxy-yorick-plmk.png|Output with plmk
File:Plotxy-yorick-plg.png|Output with plg
</gallery>