Which command will create a column vector with the values 7, 8, and 9? *
1 point
How is the random seed for MATLAB's random number generator first initialized in a MATLAB Session? *
1 point
What is a difference between global variable and persistent variables? *
1 point
What is the state of a at the end of this code? *
1 point
What kind of files are stored with the .mat extension? *
1 point
Where in the UI can you see what variables have been created, their values, and their class? *
1 point
Which choice is the correct syntax for declaring a function that returns the input value as the output? *
1 point
Which statement reverses vector a? *
1 point
Which statement returns 1 (true)? *
1 point
If you run this piece of code, you will get an error. Why? *
1 point
What is a reason to save a MAT-file using the -v7.3 flag? *
1 point
Which command will create a 10-element vector v with values from 1 to 10? *
1 point
You wrote a new function named snap in an m-file and when you call it, you're not getting the output you expect. You previously wrote a different function named snap, which you think might also be on the search path. Which command can you use to see if the old snap function is being called? *
1 point
Which does E contain? *
1 point
You've just plotted some data and want to change the color behind the lines you've plotted to black. Which code block will accomplish this? *
1 point
Which statement will return all the odd numbers from 1 to 9? *
1 point
For a 5 x 5 array, the two subscript index (4,2) indexes the same location as linear index ___. *
1 point
What do you call in the command window to see all the variables in the workspace and their classes? *
1 point
Which code block most likely produced this graph? *
1 point
In MATLAB, the imfilter command performs a convolution operation between an image and a matrix. Suppose you have an image loaded in MATLAB into the variable img and you apply the following code. The original image appears slightly blurred because the convolution smoothed out the image (removed noise). Why do you think this happened? *
1 point
Given the following x and y coordinates, which choice calculates a linear regression for the x and y coordinates, and which plots the points of the x,y data and the regression line on the same graph? *