Sunday, 31 July 2016

MATLAB Programming 41 - Some vector operations (8)

Vector Dot Product


Dot product of two vectors a = (a1, a2, …, an) and b = (b1, b2, …, bn) is given by:


a.b = Σ(ai.bi)

Dot product of two vectors a and b is calculated using the dot function.


dot(a, b);

Example


Create a script file with the following code:


v1 = [2 3 4];
v2 = [1 2 3];
dp = dot(v1, v2);
disp('Dot Product:'); disp(dp);


When you run the file, it displays the following result:


Dot Product:
20

No comments:

Post a Comment