Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to do math on Array elements?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How to do math on Array elements?

    I made an Array called myRangeArray[47] with 48 slots- one for each 30 minute TPO time period. I used Date.Time conditionals to store range values for 1/2 hour bars ending at 1:30am 013000 in myRangeArray[2] slot 2 for example. So i have right data in right place. But my question is how can i take the average of all numbers in slot [2]? How can 2 std deviation be calced? In short, how can a person do math on the list of doubles in a slot? thanks!
    Last edited by Kicks.Spin; 01-07-2022, 08:16 AM.

    #2
    Hi Kicks.Spin, thanks for posting.

    I found several links through a google search on taking the average of a C# array here (publicly available):

    To find the average of integers in C#, use the Queryable Average() method.Let’s say the following is our integer array.var arr = new int[] { 10, 17, 25, 30, 40, 55, 60, 70 };Now, use the Av

    Given an array and we have to find the average of all array elements using C# program.


    Kind regards,
    -ChrisL

    Comment


      #3
      I don't fully understand what you're doing but, I recommend this library which I use a lot:



      Code:
      Statistics.Mean(slot[2])
      Statistics.PopulationStandardDeviation(slot[2]) * 2
      might be what you need

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      557 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      324 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      545 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      547 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X