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

  • SEARCH
  • Home
  • 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 7683097
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T18:43:06+00:00 2026-05-31T18:43:06+00:00

lets say I have two matrices, of a different size: a = zeros(1,100); b

  • 0

lets say I have two matrices, of a different size:

a = zeros(1,100);
b = ones(1,200);

now I want to combine them together. The trick is, that I want to mix them randomly, but with defined how to call it.. hmm, lifetime of each group, with normal distribution.

so instead of having random 010010101010001010..
I want to set this ‘lifetime’ parameter to f.ex. 4, and as a result have something like

00001111000111110000000011110000

In other words, I have to divide it into groups of zeros and ones. Average size of single group of ones will be 4 (but there will be also groups with 2, 3 or 7, you know what I mean). Any ideas?
Thanks

  • 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-05-31T18:43:07+00:00Added an answer on May 31, 2026 at 6:43 pm

    There is no neat way of doing this, you are going to have to create a method of doing it.

    I would look at the Poisson function for your choice of mixing the two together, although if you do it with the different sized arrays, you’re going to have some weird stuff at the end.

    Basically, I would do something like this. Note that this code probably won’t work, but it should give you a starting place at least. I’ll also let you figure out how to combine them when you have exceeded the length of the matrix.

    c=zeros(length(a)+length(b))
    a_index=1;
    b_index=1;
    c_index=1;
    while(a_index<length(a) && b_index<length(b))
        a_rnd=poissrnd(4);
        b_rnd=poissrnd(r);
        c(cindex:(cindex+a_rnd))=a(a_index:(a_index+a_rnd));
        c(cindex:(cindex+b_rnd))=b(b_index:(b_index+b_rnd));
        a_index=a_index+a_rnd;
        b_index=b_index+b_rnd;
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two matrices in MATLAB lets say arr1 and arr2 of size 1000*1000
Lets say I have two tables tblA ( tableAID INT IDENTITY(1,1), foo VARCHAR(100)) tblB
lets say i have two points A & B in my 3D Space now
Lets say I have two items: Cat Dog Is there anyway of comparing them
Lets say I have two objects, and I want to use action script to
Have have two tables in two different databases: Lets say i have Database users
lets say I have two tables: TableA ID, Time, Size 0 5:00 600 1
lets say I have two methods in my controller to support both json and
Lets say I have two interfaces interface A and interface B: public interface A
Lets say I have two tables - Cat and Cat owner that are linked

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.