About 403,000 results
Open links in new tab
  1. Creating, Concatenating, and Expanding Matrices - MATLAB & Simulink

    MATLAB has many functions that help create matrices with certain values or a particular structure. For example, the zeros and ones functions create matrices of all zeros or all ones.

  2. Matrices and Arrays - MATLAB & Simulink - MathWorks

    Jul 8, 2010 · While other programming languages mostly work with numbers one at a time, MATLAB® is designed to operate primarily on whole matrices and arrays. All MATLAB variables are …

  3. Creating Matrices and Arrays - MATLAB & Simulink - MathWorks

    This example shows basic techniques for creating arrays and matrices using MATLAB.

  4. Matrices in the MATLAB Environment - MATLAB & Simulink - MathWorks

    This topic contains an introduction to creating matrices and performing basic matrix calculations in MATLAB ®. The MATLAB environment uses the term matrix to indicate a variable containing real or …

  5. Make and Manipulate Matrices | Self-Paced Online Courses - MATLAB ...

    Learn to create arrays in MATLAB with concatenation to build new matrices from existing ones, array creation functions, reshaping arrays, and indexing to extract submatrices.

  6. Basic Matrix Operations - MATLAB & Simulink Example

    This example shows basic techniques and functions for working with matrices in the MATLAB® language.

  7. Multidimensional Arrays - MATLAB & Simulink - MathWorks

    Oct 11, 2012 · You can create a multidimensional array by creating a 2-D matrix first, and then extending it. For example, first define a 3-by-3 matrix as the first page in a 3-D array.

  8. rand - Uniformly distributed random numbers - MATLAB

    To create a distributed or codistributed array with underlying type datatype, specify the underlying type as an additional argument before typename. For example, X = rand (3,datatype,'distributed') creates …

  9. Matrices and Arrays - MATLAB & Simulink - MathWorks

    Matrices and arrays are the fundamental representation of information and data in MATLAB ®. You can create common arrays and grids, combine existing arrays, manipulate an array's shape and content, …

  10. repmat - Repeat copies of array - MATLAB - MathWorks

    To create block arrays and perform a binary operation in a single pass, use bsxfun. In some cases, bsxfun provides a simpler and more memory efficient solution.