How to resolve the algorithm Dot product step by step in the Elena programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Dot product step by step in the Elena programming language

Table of Contents

Problem Statement

Create a function/use an in-built function, to compute the   dot product,   also known as the   scalar product   of two vectors. If possible, make the vectors of arbitrary length.

As an example, compute the dot product of the vectors:

If implementing the dot product of two vectors directly:

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Dot product step by step in the Elena programming language

Source code in the elena programming language

import extensions;
import system'routines;
 
extension op
{
    method dotProduct(int[] array)
        = self.zipBy(array, (x,y => x * y)).summarize();
}
 
public program()
{
    console.printLine(new int[]{1, 3, -5}.dotProduct(new int[]{4, -2, -1}))
}

  

You may also check:How to resolve the algorithm Hello world/Text step by step in the Unison programming language
You may also check:How to resolve the algorithm Koch curve step by step in the Quackery programming language
You may also check:How to resolve the algorithm Array concatenation step by step in the Delphi programming language
You may also check:How to resolve the algorithm 100 doors step by step in the Clio programming language
You may also check:How to resolve the algorithm Dijkstra's algorithm step by step in the D programming language