Question: Please use JAVA to answer this! A MathVector object will be passed to your method. Return the 5th element inside of that object. If you
Please use JAVA to answer this!

A MathVector object will be passed to your method. Return the 5th element inside of that object. If you look in the file MathVector.java you'll see there is a way to extract the value of one element in the array contained inside a MathVector object: /** Returns the element at the specified index. @paran index the index of the element to return (greturn the element at the specified index / public int at(int index) \{ \} return array[index]; use it like myObject.at(4); to get the 4th element. You did similar operations (with a different syntax) with Matlab. What to reproduce this on your own machine? Here are some important files: * preLabC.java (fill this in) - MathVector.java (the class with all the methods that the student should explore) - MyTest.java (the JUnit testing file. Student can use this on their own computer if they wish) Requested files preLabC.java
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
