Vector Basics
Operations on Vectors
Miscellaneous Vector Functions
Colon Operator and Linspace
Random
100

a(4) given a=[1,2,3,4,5].

What is 4?

100

This is how you multiply the vector 'vec' by 4.

What is vec*4?

100

This function returns the maximum value of a vector?

What is max?

100

This command returns a vector of integers from 1 to 10.

What is 1:10?

100

This is the title of this course.

What is Computer Science?

200

The two types of vectors.

What are column and row vectors?

200

The command that returns the length of the vector 'vec'.

What is length(vec)?

200

This function returns the sum of a vector.

What is sum?

200
This is the number of inputs to the function linspace.

What is 3?

200

This is the current release of Matlab.

What is 2026a?

300

This is another name for vector.

What is an array?
300

How you indicate element-by-element multiplication.

What is .* ?

300

This is how to join vectors a=[1,2,3] and b=[4,5,6].

What is [a,b]?

300

This is the name for the third input of the colon operator.

What is 'stride'?

300

This is the name for objects in problem 12 of Chapter 2.

What are thurgins?

400

vec=[5; 3; 2; 7] is this type of vector.

What is a column vector?

400

How you indicate element-by-element exponentation.

What is .^?

400

This is the command to get a five element vector filled with all 1's.

What is ones(1,5)?

400

This command returns the following vector:

[1,2.5,4,5.5,7,8.5,10]

What is linspace(1,10,7)?

400
The first chapter that we are skipping in the textbook.

What is Chapter 4?

500

The symbol for transposing vectors.

What is ' ?
500

The operation that has no non-element-wise operation.

What is exponentation?

500
This is the technical name for joining vectors.

What is concatenation?

500

This is the result of the following command:

1:-5:5

What is 1×0 empty double row vector?

500

This is the year that Matlab was released.

What is 1984?

M
e
n
u