2. Write a function remove elt(v,n) that takes as input a vector v and a number n and as output returnsa vector that is the same as v but with the single value of n removed. For example, remove elt([-2 1 31 5], 1), then the output should be either [-2 3 1 5] or [...
Theaxesdocumentation explains that the output is a handle to the axes object:http://www.mathworks.com/help/matlab/ref/axes.htmlYou can read more about graphics handles here:http://www.mathworks.com/help/matlab/learn_matlab/understanding-handle-graphics-objects.htmlhttps://en.wikibooks.org/wiki/...