Question
Fact: We cannot take the inner product of two vectors of different dimensionality. We illustrate this with an example next. using LinearAlgebra: dot a = [1, 2, 3, 5] [4, 5, 6] 4 b 5 dot (b, a) Run Revert LoadError: Dimension Mismatch("first array has length 3 which does not match the length of the second, 4.") Dimensio
Question image 1