Question: Write a function 'myfn.m' in Matlab which takes as input an integer 'n', as out- put returns nothing, and displays the following vectors 'v' to
Write a function 'myfn.m' in Matlab which takes as input an integer 'n', as out- put returns nothing, and displays the following vectors 'v' to the screen in the given order using 'disp? Don't have anything else printed to the screen. You can use linspace, colon : , zeros, ones, elementwise operations, abs, length, and explicit assignments like v(3) = 10; check with me if you want to use something else. Be sure to use the exact file name and function name 'myfn'. 1. v = [1,2,3,..., n] 2. v = [n, n-1, n - 2, ..., 1] 3. v = [0, 2, 2, 2,..., 2] (total length n) 4. v = [12, 22, 32, n?] 5. v = 21, 22, 23,..., ,2"] 6. v = [1, -5,9, -13, 17, -21, 25, ..., 89] 7. v= 201, 2001, 20001, 200001, ...] (total length 7) 8. v= (60, 1,58, 2,56,3,..., 2, 30] 9. v = (3, 7, 11, 15, ...) (never go past n) 10. v = (3, 7, 11, 15,...) (total length n)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
