Question: USING MATLAB: Outline rite a function ProjectionVector which evaluates c, which is the orthogonal vector projection of the vector a onto vector b a -
USING MATLAB:

Outline rite a function ProjectionVector which evaluates c, which is the orthogonal vector projection of the vector a onto vector b a - a vector with unknown dimensions b - a vector with the same dimensions as a C-the orthogonal vector projection of a onto b. Function Template function cProjectionVector(a,b) %INSERT-CODE-HERE end Test Example Entering ProjectionVector([1,2], [3,4]) should return [1.3200,1.7600]. Hints: 1. The MATLAB in-built functions dot and norm may be useful to complete this exercise. Sec 8.8 introduces dot 3. You can also get help for these functions by using the help command, or through the links: dot, norm
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
