for any given n, u = [1,2,3,...,n] and v = [2017,2018,2019,...,2017+n-1]. write a function that returns a vector that contains the following sequence: [1*2017, 2*2018, 3*2019,...,n*(2017+n-1)]. hint: you might want to create vectors u and v

0

for any given n, u = [1,2,3,...,n] and v = [2017,2018,2019,...,2017+n-1]. write a function that returns a vector that contains the following sequence: [1*2017, 2*2018, 3*2019,...,n*(2017+n-1)]. hint: you might want to create vectors u and v.

By Beginner Regina Johns at Aug 31 2020


Related code examples


Code examples by languages