Question: Write a function that takes two arrays and their size as inputs, and calculates their inner product (note that both arrays must have the same

 Write a function that takes two arrays and their size as

Write a function that takes two arrays and their size as inputs, and calculates their inner product (note that both arrays must have the same size so only one argument is needed to specify their size). The inner product of two arrays A and B with N elements is a scalar value c defined as follows: c = A middot B sigma_i = 0^N - 1 A(i) B(i) = A(0)B(0) + A(1)B(1) + ... + A(N - 1) B(N - 1), where A(i) and B(i) are the i th elements of arrays A and B, respectively. For example, the inner product of A = (1, 2) and B = (3, 3) is c_1 = 9; and the inner product of C = (2, 5, 4, -2, 1) and D = (3, 4, 2, 0, 2) is c_2 = 36. You must use the following function prototype: int innerProduct(int A[], int B[], int size)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!