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

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Plot coordinate pairs step by step in the Erlang 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 Erlang programming language

Source code in the erlang programming language

-module( plot_coordinate_pairs ).

-export( [task/0, to_png_file/3] ).

task() ->
	Xs = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	Ys = [2.7, 2.8, 31.4, 38.1, 58.0, 76.2, 100.5, 130.0, 149.3, 180.0],
	File = "plot_coordinate_pairs",
	to_png_file( File, Xs, Ys ).

to_png_file( File, Xs, Ys ) ->
	PNG = egd_chart:graph( [{File, lists:zip(Xs, Ys)}] ),
	file:write_file( File ++ ".png", PNG ).


  

You may also check:How to resolve the algorithm Non-decimal radices/Output step by step in the Rust programming language
You may also check:How to resolve the algorithm Nim game step by step in the AutoHotkey programming language
You may also check:How to resolve the algorithm Yin and yang step by step in the Plain English programming language
You may also check:How to resolve the algorithm Mad Libs step by step in the C# programming language
You may also check:How to resolve the algorithm User input/Text step by step in the SparForte programming language