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

    This MATLAB function returns an array containing n copies of A in the row and column dimensions.

  2. repmat - Replicate and tile array - MATLAB - MathWorks

    This MATLAB function creates a large matrix B consisting of an M-by-N tiling of copies of A.

  3. Create Arrays with repmat - MATLAB & Simulink - MathWorks

    Create Arrays with repmat The MATLAB ® command repmat is used to replicate and tile arrays. It works on the built-in objects of MATLAB, namely double, char, as well as the generalized container objects …

  4. bsxfun - Apply element-wise operation to two arrays with implicit ...

    This MATLAB function applies the element-wise binary operation specified by the function handle fun to arrays A and B.

  5. repmat usage for cellarray - MATLAB Answers - MATLAB Central

    Nov 18, 2021 · repmat usage for cellarray. Learn more about cell arrays, repmat

  6. Create cell array with the same string n-times - MATLAB Answers ...

    Oct 2, 2011 · Now I need to create a cell array with the name of the file for each value.

  7. How can I repeat a 2-D array to create a 3-D array? - MATLAB Answers ...

    Jul 12, 2022 · A is a 2x3 array. I want to create a 3-D 'stack' so that each layer of the 3-D stack is identical to A. I've found that the following code gives the desired result: A =[1 2 3;4 5 6]; for j=1:5 ...

  8. repelem - Repeat copies of array elements - MATLAB - MathWorks

    This MATLAB function, where v is a scalar or vector, returns a vector of repeated elements of v.

  9. Generate Code for Structure Arrays - MATLAB & Simulink

    This example shows how to write a MATLAB function that uses structure arrays so that it is suitable for code generation.

  10. Repeat element of a vector n times without loop. - MATLAB Answers ...

    Aug 28, 2012 · (x.' * repmat (eye (length (x)), 1, n)).' if you wanted to use the * operator to duplicate elements -- forcing you to call upon repmat () to duplicate elements. Using the kronecker is a known …