• 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/14

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;

14 Cards in this Set

  • Front
  • Back

Reference column n of the matrix A

A(:,n)

Reference rows n of matrix A

A(n,:)

Reference columns m and n of matrix A

A(:,m:n)

Reference rows m through n of matrix A

A(m:n,:)

Reference rows m through n and columns p through q in matrix A

A(m:n,p:q)

How to find number of elements in vector A

length (A)

How to find the size of vector A

size (A)

How to reshape matrix A

reshape(A,m,n)

diag(v)

Creates a diagonal vector from v=[abc]

diag(A)

Creates a vector from the diagonal elements of A

Line specifiers (Line style)

Solid -


Dashed --


Dotted :


Dash-dot -.

Line specifiers (Line color

Red r


Green g


Blue b


Cyan c


Magenta m


Yellow y


Black k


White w

Line specifiers (marker type)

Plus sign +


Circle o


Asterisk *


Point .


Cross x


Triangle (up) ^


Triangle (down) v


Square s


Diamond d


Five pointed star p


Six pointed star h


Triangle (left) <


Triangle (right) >

Line properties

LineWidth


MarkerSize


MarkerEdgeColor


MarkerFaceColor