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

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Dot product step by step in the VBScript 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 VBScript programming language

Source code in the vbscript programming language

WScript.Echo DotProduct("1,3,-5","4,-2,-1")

Function DotProduct(vector1,vector2)
	arrv1 = Split(vector1,",")
	arrv2 = Split(vector2,",")
	If UBound(arrv1) <> UBound(arrv2) Then
		WScript.Echo "The vectors are not of the same length."
		Exit Function
	End If
	DotProduct = 0
	For i = 0 To UBound(arrv1)
		DotProduct = DotProduct + (arrv1(i) * arrv2(i))
	Next
End Function

  

You may also check:How to resolve the algorithm Tokenize a string step by step in the XPath 2.0 programming language
You may also check:How to resolve the algorithm Van Eck sequence step by step in the Cowgol programming language
You may also check:How to resolve the algorithm Input loop step by step in the Fortran programming language
You may also check:How to resolve the algorithm Polymorphic copy step by step in the Lua programming language
You may also check:How to resolve the algorithm Fibonacci sequence step by step in the MAXScript programming language