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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T12:08:58+00:00 2026-06-03T12:08:58+00:00

Say there is an array of n elements, and out of n elements there

  • 0

Say there is an array of n elements, and out of n elements there be some numbers which are much bigger than the rest.

So, I might have:

16, 1, 1, 0, 5, 0, 32, 6, 54, 1, 2, 5, 3

In this case, I’d be interested in 32, 16 and 54.

Or, I might have:

32, 105, 26, 5, 1, 82, 906, 58, 22, 88, 967, 1024, 1055 

In this case, I’d be interested in 1024, 906, 967 and 1055.

I’m trying to write a function to extract the numbers of interest. The problem is that I can’t define a threshold to determine what’s “much greater”, and I can’t just tell it to get the x biggest numbers because both of these will vary depending on what the function is called against.

I’m a little stuck. Does anyone have any ideas how to attack this?

  • 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-03T12:08:59+00:00Added an answer on June 3, 2026 at 12:08 pm

    Just taking all the numbers larger than the mean doesn’t cut it all the time. For example if you only have one number which is much larger, but much more numbers wich are close to each other. The one large number won’t shift the mean very much, which results in taking too many numbers:

    data = [ones(1,10) 2*ones(1,10) 10];
    data(data>mean(data))
    
    ans =
    
          2     2     2     2     2     2     2     2     2     2    10
    

    If you look at the differences between numbers, this problem is solved:

    >> data = [16, 1, 1, 0, 5, 0, 32, 6, 54, 1, 2, 5, 3];
    sorted_data = sort(data);
    dd = diff(sorted_data);
    mean_dd = mean(dd);
    ii = find(dd> 2*mean_dd,1,'first');
    large_numbers = sorted_data(ii:end);
    
    large_numbers =
    
       6    16    32    54
    

    the threshold value (2 in this case) lets you play with the meaning of “how much greater” a number has to be.

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

Sidebar

Related Questions

I have an array (of 9 elements, say) which I must treat as a
Say I have an array of number a <- c(1,2,3,6,7,8,9,10,20) if there a way
Say you have an array, data, of unknown length. Is there a shorter method
I have a large array (say 512K elements), GPU resident, where only a small
Say I have an array with a couple hundred elements. I need to iterate
Let's say I have this: var blockedTile = new Array(118, 67, 190, 43, 135,
Let's say I have a vector (array, list, whatever...) V of N elements, let's
say, i have a string array of 50000 elements. Searching the array using For
Is there anyway that an indexed array say ['1' => 'dave, '2' => 'ryan',
Say there are multiple requests in a integration test, some of them are local

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.