About 21,500 results
Open links in new tab
  1. repmat - Repeat copies of array - MATLAB - MathWorks

    Generate all element combinations of the two vectors by using repelem and repmat. Each row of the output T is a combination with the first element coming from the first vector and the second …

  2. matlabrepmat函数的用法-CSDN博客

    Oct 30, 2025 · 这是一个处理大矩阵且内容有重复时使用,其功能是以A的内容堆叠在(MxN)的矩阵B中,B矩阵的大小由MxN及A矩阵的内容决定,如果A是一个3x4x5的矩阵,有B = repmat …

  3. repmat (MATLAB Functions) - Northwestern University

    repmat(A,m,n) when A is a scalar, produces an m -by- n matrix filled with A 's value. This can be much faster than a*ones(m,n) when m or n is large. Examples In this example, repmat …

  4. Repmat Matlab | What is Repmat and How Is It Used? - Simplilearn

    Aug 23, 2025 · You can use the repmat command to repeat the elements of an array in the output. Repetition is based on the parameters you specify in the bracket after …

  5. repmat函数 - 知乎

    B = repmat(A, r1,...,rN) 指定一个标量列表 r1,..,rN,这些标量用于描述 A 的副本在每个维度中如何排列。 当 A 具有 N 维时, B 的大小为 size(A).*[r1...rN]。

  6. repmat (MATLAB Function Reference) - Mathematics

    produces a multidimensional (m -by- n -by- p -by-...) array composed of copies of A. A may be multidimensional. repmat(A,m,n) when A is a scalar, produces an m -by- n matrix filled with A …

  7. MATLAB Repmat - Delft Stack

    Jun 7, 2022 · We can use the repmat() function to create a matrix by repeating a single value. For example, let’s create a 2-by-2 matrix containing the value 5. See the code below.

  8. repmat function - RDocumentation

    repmat: MATLAB repmat function Description Replicate and tile a matrix. Usage repmat(A, ...) Value Returns matrix with value A tiled to the number of dimensions specified. Defaults to …

  9. Repmat in Matlab | What is Repmat in Matlab with Examples

    Mar 23, 2023 · Repmat in Matlab is one of the commands in Matlab which is used for array manipulations. This command gives output in the form of an array repetition of the original array.

  10. Repmat in Matlab - Tpoint Tech - Java

    Mar 17, 2025 · repmat stands for repeat matrix and is a handy function for replicating and tiling matrices in MATLAB. In this guide, we will delve into what repmat does, how it works, and …