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 6938235
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T12:28:00+00:00 2026-05-27T12:28:00+00:00

I have a vector a = 1111000011100001110000100100 and I have to compute two values

  • 0

I have a vector a = 1111000011100001110000100100 and I have to compute two values based on it: p00 and p11.

p00 is the number of times 00 is occurring in the vector, divided by the total number of zeros. For example, in the above code then number of times 00 is occurring is 8/16 (total number of zeros).

Similarly, p11 is the number of occurrences of 11 divided by the total number of ones.

How can this be implemented in Matlab?

  • 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-27T12:28:01+00:00Added an answer on May 27, 2026 at 12:28 pm

    The safest and most generic way to do it is using regular expressions, because of the way they match runs.

    a = [1 1 1 1 0 0 0 0 1 1 1 0 0 0 0 1 1 1 0 0 0 0 1 0 0 1 0 0]
    s = char(a + '0');
    p00 = numel(regexp(s, '00')) / sum(a == 0)
    p11 = numel(regexp(s, '11')) / sum(a == 1)
    

    NOTE:
    I was tempted to do something along the following lines:

    a = [1 1 1 1 0 0 0 0 1 1 1 0 0 0 0 1 1 1 0 0 0 0 1 0 0 1 0 0]
    n = numel(a);
    p00 = sum(a(1:n-1) == 0 & a(2:n) == 0) / sum(a == 0)
    p11 = sum(a(1:n-1) == 1 & a(2:n) == 1) / sum(a == 1)
    

    But this won’t give the correct result, because it counts the sequence 0 0 0 0 as 3, rather than 2.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the vector d<-1:100 I want to sample k=3 times from this vector
I have vector with values between 1 and N > 1 . Some values
I have two vector<T> in my program, called active and non_active respectively. This refers
I have a vector which contains values such as: [-0.0081 -0.0060 -0.0020 -0.0014 -0.0002
I have Vector of Hashtables and each hash table has two elements with keys
I have a vector of observed values and also a vector of values calculated
I have vector< pair<int, int>> myVec (N); I want to have all pairs initialized
in clojure i have vector [myfn1 myfn2 myfn3] how can i call functions named
I have a vector class and I defined the __mul__ method to multiply a
I have a vector of objects (objects are term nodes that amongst other fields

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.