Plot coordinate pairs: Difference between revisions

Content added Content deleted
(add task to ARM64 assembly Raspberry Pi)
(Add Factor)
Line 1,070: Line 1,070:


Plot([Data(Seq.zip x y)], (0.0, 9.0))</lang>
Plot([Data(Seq.zip x y)], (0.0, 9.0))</lang>

=={{header|Factor}}==
{{works with|Factor|0.99 2019-01-23}}
<lang factor>USING: accessors assocs colors.constants kernel sequences ui
ui.gadgets ui.gadgets.charts ui.gadgets.charts.lines ;

chart new { { 0 9 } { 0 180 } } >>axes
line new COLOR: blue >>color
9 <iota> { 2.7 2.8 31.4 38.1 58 76.2 100.5 130 149.3 180 } zip
>>data add-gadget "Coordinate pairs" open-window</lang>


=={{header|Fōrmulæ}}==
=={{header|Fōrmulæ}}==