About 1,220,000 results
Open links in new tab
  1. size - Array size - MATLAB - MathWorks

    Dimension lengths, returned as a nonnegative integer scalar when dim is a positive integer scalar, a row vector of nonnegative integer scalars when dim is a vector of positive integers, or a 1-by …

  2. reshape - Reshape array by rearranging existing elements - MATLAB

    Reshape a 4-by-4 square matrix into a matrix that has 2 columns. Specify [] for the first dimension to let reshape automatically calculate the appropriate number of rows.

  3. max - Maximum elements of array - MATLAB - MathWorks

    If A is a vector, then max(A) returns the maximum of A. If A is a matrix, then max(A) is a row vector containing the maximum value of each column of A. If A is a multidimensional array, …

  4. length - Length of largest array dimension - MATLAB - MathWorks

    This MATLAB function returns the length of the largest array dimension in X.

  5. Error using / Matrix dimensions must agree... - MathWorks

    Oct 2, 2013 · Error using / Matrix dimensions must agree.... Learn more about plot, error

  6. permute - Permute array dimensions - MATLAB - MathWorks

    B = permute(A,dimorder) rearranges the dimensions of an array in the order specified by the vector dimorder. For example, permute(A,[2 1]) switches the row and column dimensions of a …

  7. Reshaping and Rearranging Arrays - MATLAB & Simulink

    Apr 7, 2010 · Reshaping The reshape function changes the size and shape of an array. For example, reshape a 3-by-4 matrix to a 2-by-6 matrix.

  8. resize - Resize data by adding or removing elements - MATLAB

    This MATLAB function resizes A to size m by adding elements to or removing elements from the trailing side of A.

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

    B = repmat(A,n) returns an array containing n copies of A in the row and column dimensions. The size of B is size(A)*n when A is a matrix.

  10. cat - Concatenate arrays - MATLAB - MathWorks

    This MATLAB function concatenates B to the end of A along dimension dim when A and B have compatible sizes (the lengths of the dimensions match except for the operating dimension dim).