How to resolve the algorithm Plot coordinate pairs step by step in the HicEst programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Plot coordinate pairs step by step in the HicEst programming language

Table of Contents

Problem Statement

Plot a function represented as    x,  y    numerical arrays. Post the resulting image for the following input arrays (taken from Python's Example section on Time a function): This task is intended as a subtask for Measure relative performance of sorting algorithms implementations.

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Plot coordinate pairs step by step in the HicEst programming language

Source code in the hicest programming language

REAL :: n=10, x(n), y(n)

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(WINdowhandle=wh, Width=-300, Height=-300, X=1, TItle='Rosetta')
AXIS(WINdowhandle=wh, Title='x values', Yaxis, Title='y values')
LINE(X=x, Y=y, SymbolDiameter=2)

  

You may also check:How to resolve the algorithm Word wheel step by step in the Phix programming language
You may also check:How to resolve the algorithm O'Halloran numbers step by step in the Raku programming language
You may also check:How to resolve the algorithm Range expansion step by step in the Common Lisp programming language
You may also check:How to resolve the algorithm Echo server step by step in the JavaScript programming language
You may also check:How to resolve the algorithm Sequence: nth number with exactly n divisors step by step in the J programming language