Mix 1
Mix 2
Mix 3
Mix 4
Mix 5
100

A loop used to repeat a set of commands a specific number of times.

What is a for loop?

100

The most important elements (arguments) to define in a function.

What are the input and output?

100

A command used to clear the Command Window.

What is clc?

100

MATLAB is an abbreviation of these words.

What is Matrix Laboratory?

100

An example of a built-in function used to read different data files in MATLAB.

What are readtable, readmatrix, csvread, xlsread, importdata?

200

A function used to set the label of the x-axis.

What is xlabel('name').

200

The notation used to create a section break.

What are two percent symbols (%%)?

200

A symbol used to comment a line of code.

What is a percent sign (%)?

200

The decade in which MATLAB first appeared.

What are the 1970s?

200

A function used to display text or variables in the Command Window.

What is disp()?

300

A function used to plot the data as points (not the plot() function).

What is scatter()?

300

A function used to create a vector containing a row vector of n evenly spaced points between two numbers.

What is linspace?

300

A function that returns the length of the largest array dimension of an array.

What is length()?

300

A symbol added at the end of a line to prevent output from being displayed in the Command Window.

What is semicolon (;)?

300

A function used to give a title to a plot.

What is title('name')?

400

A function used to create multiple subplots within one figure (not to overlay plots on top of each other).

What is subplot()?

400

A command used to save variables to a .mat file.

What is save('filename.mat)?

400

A function used to generate random numbers.

What is rand()?

400

An array indexing used to extract the element in the second row and fifth column of a matrix A.

What is A(2,5)?

400

The full name of a .csv-file.

What is a Comma-Separated Values?

500

A loop that continues executing until a specified condition is met.

What is a while loop?

500

A symbol used to skip an output of a function.

What is tilde (~)?

500

A symbol used for comparison (equality) as well as used for assigning a name to a variable. 

What is =? (== for comparison (equality) and = for assignment)s

500

A command used to load data from a .mat file.

What is load('filename.mat')?

500
A function that gives as output the maximum value and corresponding index of the maximum value.

What is max()?

M
e
n
u