RosettaCodeData/Task/Plot-coordinate-pairs/00DESCRIPTION

10 lines
459 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
;Task:
Plot a function represented as   `x',   `y'   numerical arrays.
2013-04-10 23:57:08 -07:00
2016-12-05 22:15:40 +01:00
Post the resulting image for the following input arrays (taken from [[Time_a_function#Python|Python's Example section on ''Time a function'']]):
2013-04-10 23:57:08 -07:00
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};
This task is intended as a subtask for [[Measure relative performance of sorting algorithms implementations]].
2016-12-05 22:15:40 +01:00
<br><br>