Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8256705
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T01:57:07+00:00 2026-06-08T01:57:07+00:00

How to repeat A = [ 1 2 ; 3 4 ] repeated by

  • 0

How to repeat

A = [ 1 2 ; 
      3 4 ]

repeated by

B = [ 1 2 ; 
      2 1 ]

So I want my answer like matrix C:

C = [ 1 2 2; 
      3 3 4 ]

Thanks for your help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T01:57:09+00:00Added an answer on June 8, 2026 at 1:57 am

    To make this simple, I assume that you’re only going to add more columns, and that you’ve checked that you have the same number of columns for each row.

    Then it becomes a simple combination of repeating elements and reshaping.

    EDIT I’ve modified the code so that it also works if A and B are 3D arrays.

    %# get the number of rows from A, transpose both
    %# A and B so that linear indexing works
    [nRowsA,~,nValsA] = size(A);
    A = permute(A,[2 1 3]);
    B = permute(B,[2 1 3]);
    
    %# create an index vector from B 
    %# so that we know what to repeat
    nRep = sum(B(:));
    
    repIdx = zeros(1,nRep);
    repIdxIdx = cumsum([1 B(1:end-1)]);
    repIdx(repIdxIdx) = 1;
    repIdx = cumsum(repIdx);
    
    %# assemble the array C
    C = A(repIdx);
    C = permute(reshape(C,[],nRowsA,nValsA),[2 1 3]);
    
    C =
         1     2     2
         3     3     4
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need some help. I want to generate numbers.But my numbers repeated. how can
I want to repeat a function from the moment the program opens until it
I have created a repeat control that list some documents. I would like to
I want to repeat the rows of a data.frame, each N times. The result
I want to repeat my task on every Monday at 09:00AM & 05:00 PM.
I have a simple 'repeat with' in an AppleScript, and would like to move
This may be a repeat of the following unanswered question: Help with bitmap lock
Sorry to repeat old questions, but I didn't quite understand the answer. The question
I want to make limitation for random class in c# like generate random variables
I have a div with a background png repeated, I want to give a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.