a(4) given a=[1,2,3,4,5].
What is 4?
This is how you multiply the vector 'vec' by 4.
What is vec*4?
This function returns the maximum value of a vector?
What is max?
This command returns a vector of integers from 1 to 10.
What is 1:10?
This is the title of this course.
What is Computer Science?
The two types of vectors.
What are column and row vectors?
The command that returns the length of the vector 'vec'.
What is length(vec)?
This function returns the sum of a vector.
What is sum?
What is 3?
This is the current release of Matlab.
What is 2026a?
This is another name for vector.
How you indicate element-by-element multiplication.
What is .* ?
This is how to join vectors a=[1,2,3] and b=[4,5,6].
What is [a,b]?
This is the name for the third input of the colon operator.
What is 'stride'?
This is the name for objects in problem 12 of Chapter 2.
What are thurgins?
vec=[5; 3; 2; 7] is this type of vector.
What is a column vector?
How you indicate element-by-element exponentation.
What is .^?
This is the command to get a five element vector filled with all 1's.
What is ones(1,5)?
This command returns the following vector:
[1,2.5,4,5.5,7,8.5,10]
What is linspace(1,10,7)?
What is Chapter 4?
The symbol for transposing vectors.
The operation that has no non-element-wise operation.
What is exponentation?
What is concatenation?
This is the result of the following command:
1:-5:5
What is 1×0 empty double row vector?
This is the year that Matlab was released.
What is 1984?