Differences between revisions 1 and 2
Revision 1 as of 2023-10-30 17:52:37
Size: 726
Comment: Initial commit
Revision 2 as of 2023-10-30 17:57:32
Size: 619
Comment:
Deletions are marked like this. Additions are marked like this.
Line 24: Line 24:
julia> A = [2,3,4]
3-element Vector{Int64}:
 2
 3
 4

julia> B = [5,6,7]
3-element Vector{Int64}:
 5
 6
 7
Line 37: Line 25:
julia> AB julia> [2,3,4][5,6,7]

Vector Multiplication


Dot Product

The dot product of two vectors gives a single scalar value.

Generally, given two vectors (a and b) with n dimensions, the dot product is computed as:

dot1.svg

Concretely, if a and b have three dimensions (labeled x, y, and z), the dot product can be computed as:

dot2.svg

julia> using LinearAlgebra

julia> # type '\cdot' and tab-complete into '⋅'
julia> [2,3,4] ⋅ [5,6,7] 
56


CategoryRicottone

LinearAlgebra/VectorMultiplication (last edited 2025-03-28 16:32:43 by DominicRicottone)