• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/13

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

13 Cards in this Set

  • Front
  • Back
zeros(n)
Generates an 'n' x 'n' matrix of zeros.
zeros(m,n)
Generates an 'm' x 'n' matrix of zeros.
zeros(size(arr))
Generates a matrix of zeros of the same size as 'arr'.
ones(n)
Generates an 'n' x 'n' matrix of ones.
ones(m,n)
Generates an 'm' x 'n' matrix of ones.
ones(size(arr))
Generates a matrix of ones of the same size as 'arr'.
eye(n)
Generates a 'n' x 'n' identity matrix.
eye(m,n)
Generates an 'm' x 'n' identity matrix.
length(arr)
Returns the length of a vector, or the longest dimension of a two-dimensional array called 'arr'.
size(arr)
Returns two values specifying the number of rows and columns in 'arr'.
x = input ( 'Enter data:')
Provides the prompt "Enter data:" and sets the entry equal to x.
x = a:b:c
Creates a series of values where 'a' is the first value, 'b' is the increment, and 'c' is the last in the series.
( ' )
Transpose operator; swaps the rows and columns of any array it is applied to