Define a MATLAB function named getAndReturnVectorElements() that would accept one vector of any size as the argument. The getAndReturnVectorElements() function should get only the 3rd, 6th, and 9th elements of the vector passed to it and return those 3 elements as a vector (assuming the vector passed to the function does have those elements). The function MUST return a vector. The function should NOT print anything. Note: Do NOT use vectorized code. Other than the built-in functions listed above, do NOT use any built-in functions. You MUST use the "programming concept" method of writing code. For example, if I call the getAndReturnVectorElements() function and pass the [1 2 3 4 5 6 7 8 9 10] vector to it, then the function would return the [3 6 9 ] vector. If I call the getAndReturnVectorElements() function and pass the [88 44 22] vector to it, then the function would return the [22] vector. If I call the getAndReturnVectorElements() function and pass the [88 44] vector to it, then the function would return the empty vector [ ] vector. Call and test the getAndReturnVectorElements() function before you submit the script file for it. Upload and submit the script file for the function.
Define a MATLAB function named getAndReturnVectorElements() that would accept one vector of any size as the argument. The getAndReturnVectorElements() function should get only the 3rd, 6th, and 9th elements of the vector passed to it and return those 3 elements as a vector (assuming the vector passed to the function does have those elements). The function MUST return a vector. The function should NOT print anything.
Note: Do NOT use vectorized code. Other than the built-in functions listed above, do NOT use any built-in functions. You MUST use the "programming concept" method of writing code.
For example, if I call the getAndReturnVectorElements() function and pass the [1 2 3 4 5 6 7 8 9 10] vector to it, then the function would return the [3 6 9 ] vector.
If I call the getAndReturnVectorElements() function and pass the [88 44 22] vector to it, then the function would return the [22] vector.
If I call the getAndReturnVectorElements() function and pass the [88 44] vector to it, then the function would return the empty vector [ ] vector.
Call and test the getAndReturnVectorElements() function before you submit the script file for it. Upload and submit the script file for the function.
Note: Test your code for different test cases so that your code will not crash if vectors of size less than 9 are passed to the function.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 4 images