You are on page 1of 1

Use linspace built-in function to create vectors identical to the following created with

colon operator:

a) a = 4:6:34

b) y = -8:2

The correct answer is: a = linspace(4,34,6) y = linspace(-8,2,11)

You might also like