https://warriorplus.com/o2/a/x8g6yk/0 be more attractive: How to Create a Matrix, Vector, and Cell Array in MATLAB

dimanche 14 août 2016

How to Create a Matrix, Vector, and Cell Array in MATLAB

This article covers how to create matrices, vectors, and cell arrays with the programming software MATLAB. Since MATLAB is a program offering endless possibilities, being able to understand the basics will lead to the ability to write more complex codes later on. No previous knowledge of MATLAB is required for these instructions.

EditSteps

EditCreating Matrices

  1. Create a matrix. A matrix is a rectangular set of numbers that are arranged in multiple rows and columns. Code a matrix by listing a series numbers separated by spaces or commas per row within the command window. For a new row, a semi colon is placed between the values of the old row and new row. The matrix is finished by surrounding it by brackets. Hit enter when finished to display the matrix.
    • Example: M=[2,3,4,5;6,7,8,9] or M=[2 3 4 5;6 7 8 9]
      Matrix1.jpg
      Matlab.jpg
  2. Create a one value matrix. Type commands such as zeros or ones to create a matrix with only one value within it. Follow these commands by the number of rows then the number of columns separated by a comma and surrounded by parenthesis.
    • Example: zeros(# of rows, # of columns)
      Martix3.jpg
    • Example: ones(# of rows, # of columns)
      Martix4.jpg
    • Edit a ones matrix. You can multiply a ones matrix by any number to create a new matrix in which all the elements are the value which the ones matrix was multiplied by.
      Martix5.jpg

EditCreating Vectors

  1. Create a horizontal vector. A vector is a set of numbers that are arranged in a single row or single column. Code a horizontal vector by listing a series of numbers in the vector that are separated by spaces or commas and surrounded by brackets. Hit enter once completed the code to display the vector.
    • Example: V=[2,3,4,5,6,7,8,9] or V=[2 3 4 5 6 7 8 9]
      Vector6.jpg
      Vector7.jpg
  2. Create a vertical vector. Start by listing a series of numbers that are separated by semicolons and surrounded by brackets. Hit enter once completed the code to display the vector.
    • Example: V=[2;3;4;5;6;7;8;9]
      Vectors8.jpg
  3. Create a one value vector. Type commands such as zeros or ones to create a horizontal or vertical vector with only one value within it. Follow these commands by the number of rows then the number of columns separated by a comma and surrounded by parenthesis.
    • Example: zeros(# of rows, # of columns)
      Vector11.jpg
    • Example: ones(# of rows, # of columns)
      Vector12.jpg
    • Edit a ones vector. You can multiply a ones vector by any number to create a new vector in which all the elements are the value which the ones vector was multiplied by.
      Vector13.jpg
  4. Create a vector with a pattern. A pattern is a list of numbers that follow a certain rule or sequence. Type the colon operator or the linspace command. A colon operator focuses on a specific increment that the pattern follows while the linspace command focuses on the number of variables within the pattern that are have the same increment between them.
    • Use a colon operator. Type the first number of pattern, increment between the values, and last number of the pattern all separated by colons. Hit enter once code is completed.
      Vector9.jpg
    • Use linspace command. Type linspace then first number in pattern, last number in the pattern, total number of equally spaced values separated by commas and surrounded by parenthesis. Hit enter once the code is completed.
      Vectors10.jpg

EditCreating Cell Arrays

  1. Create a cell array. A cell array is a rectangular set of data similar to a matrix but it can hold any type of data such as text, numbers, and/or vector. Code a cell array by listing a series of numbers, vectors, or characters in the same format as a matrix while characters are in quotation marks and vectors are in brackets. The cell array is surrounded by curly brackets { }. Hit enter once the code is completed.
    • Example: C={1, ‘h’, 5, 7; [1:2:11], ‘m’, 8, 25} or C={1 ‘h’ 5 7; [1:2:11] ‘m’ 8 25}
      CellArray14.jpg
      CellArray15.jpg
  2. Double-click on the cell array's value in the workspace to view the cell array entirely. A new window will open to so you can confirm your vector entry in the cell array.
    CellArray1.jpg
    CellArray17.jpg

EditAvoiding Common Errors

  1. Ensure that all commands are in lowercase letters.
  2. Ensure that the Matrix has the same number of variables in each column.
  3. Ensure that the Matrix has the same number of variables in each row.
    • Trouble18.jpg
  4. Ensure that the Cell Array has curly brackets { } enclosing it.
  5. Ensure that the Matrix and/or Vector has brackets [ ] enclosing it
    • Trouble19.jpg
  6. Ensure that the words or letters within a cell array are in quotation marks.
    Trouble20.jpg

EditTips

  • If you would like to name a matrix/vector/cell array, add a word or letter and equal sign before the matrix as seen in the examples.




source How to of the Day http://ift.tt/2bht40X

Aucun commentaire:

Enregistrer un commentaire

https://warriorplus.com/o2/a/x8g6yk/0

How to Read Body Language

Reading body language, or non-verbal cues, is a way to infer things about people you see around you or have interactions with. When you kno...

https://warriorplus.com/o2/a/x8g6yk/0