Difference between revisions of "LlListStatistics"

From Second Life Wiki
Jump to navigation Jump to search
m
(good example, just needed a little tweaking)
Line 53: Line 53:
{{!}}Calculates the geometric mean.
{{!}}Calculates the geometric mean.
{{!}}}
{{!}}}
|examples=<lsl>
|examples=<lsl>// shows just how bad SL is behaving and demonstrates the use of llListStatistics()
// shows just how bad SL is behaving and demonstrates the use of llListStatistics()
list dil_s;
list dil_s;
list fps_s;
list fps_s;
Line 60: Line 59:
default
default
{
{
     state_entry ()
     state_entry()
     {
     {
         dil_s = [];
         dil_s = fps_s = [];
        fps_s = [];
         llSetTimerEvent(1.0);
         llSetTimerEvent (1.0);
     }
     }
      
      
     on_rez (integer parm)
     on_rez (integer parm)
     {
     {
         llResetScript ();
         llResetScript();
     }
     }
      
      
     timer()
     timer()
     {
     {
         dil_s += llGetRegionTimeDilation ();
         dil_s = llList2List(dil_s + llGetRegionTimeDilation(), -60, -1);
         fps_s += llGetRegionFPS ();
         fps_s = llList2List(fps_s + llGetRegionFPS(), -60, -1);
         integer n = llGetListLength (dil_s);
         if(llGetListLength(dil_s) > 3)
         while (n > 60) {
         {
            dil_s = llDeleteSubList (dil_s, 0, 0);
            llSetText(
            fps_s = llDeleteSubList (fps_s, 0, 0);
                "Dilation: min="+(string) llListStatistics(LIST_STAT_MIN, dil_s) + ", mean=" +
            n = llGetListLength (dil_s);
                    (string) llListStatistics(LIST_STAT_MEAN, dil_s) + ", max=" +
                    (string) llListStatistics(LIST_STAT_MAX, dil_s) + ", std.dev=" +
                    (string) llListStatistics(LIST_STAT_STD_DEV, dil_s) + "\n" +
                    "FPS: min="+(string) llListStatistics(LIST_STAT_MIN, fps_s) + ", mean=" +
                    (string) llListStatistics(LIST_STAT_MEAN, fps_s) + ", max=" +
                    (string) llListStatistics(LIST_STAT_MAX, fps_s) + ", std.dev=" +
                    (string) llListStatistics(LIST_STAT_STD_DEV, fps_s),
                <1.0, 1.0, 0.0>, //yellow
                1.0);
         }
         }
        if (n > 3) {
    }
                string s = "Dilation: min="+(string) llListStatistics (LIST_STAT_MIN, dil_s) + ", mean=" +
   
                    (string) llListStatistics (LIST_STAT_MEAN, dil_s) + ", max=" +
    changed(integer change)
                    (string) llListStatistics (LIST_STAT_MAX, dil_s) + ", std.dev=" +
    {
                    (string) llListStatistics (LIST_STAT_STD_DEV, dil_s) + "\n";
        if(change & CHANGED_REGION)
                s += "FPS: min="+(string) llListStatistics (LIST_STAT_MIN, fps_s) + ", mean=" +
        {
                    (string) llListStatistics (LIST_STAT_MEAN, fps_s) + ", max=" +
            llResetScript();
                    (string) llListStatistics (LIST_STAT_MAX, fps_s) + ", std.dev=" +
                    (string) llListStatistics (LIST_STAT_STD_DEV, fps_s);
                llSetText (s, <1,1,0>, 1);
         }
         }
     }
     }
}
}</lsl>
</lsl>
|helpers
|helpers
|also_functions={{LSL DefineRow||[[llGetListEntryType]]|}}
|also_functions={{LSL DefineRow||[[llGetListEntryType]]|}}

Revision as of 17:37, 5 April 2008

Summary

Function: float llListStatistics( integer operation, list src );

Returns a float that is the result of performing statistical aggregate function operation on src.

• integer operation a LIST_STAT_* flag
• list src

If a list entry type is not a float or an integer it is silently ignored.

Constant Description
LIST_STAT_RANGE 0 Returns the range.
LIST_STAT_MIN 1 Retrieves the smallest number.
LIST_STAT_MAX 2 Retrieves the largest number.
LIST_STAT_MEAN 3 Retrieves the mean (average).
LIST_STAT_MEDIAN 4 Retrieves the median number.
LIST_STAT_STD_DEV 5 Calculates the standard deviation.
LIST_STAT_SUM 6 Calculates the sum.
LIST_STAT_SUM_SQUARES 7 Calculates the sum of the squares.
LIST_STAT_NUM_COUNT 8 Retrieves the number of float and integer elements.
LIST_STAT_GEOMETRIC_MEAN 9 Calculates the geometric mean.

Examples

<lsl>// shows just how bad SL is behaving and demonstrates the use of llListStatistics() list dil_s; list fps_s;

default {

   state_entry()
   {
       dil_s = fps_s = [];
       llSetTimerEvent(1.0);
   }
   
   on_rez (integer parm)
   {
       llResetScript();
   }
   
   timer()
   {
       dil_s = llList2List(dil_s + llGetRegionTimeDilation(), -60, -1);
       fps_s = llList2List(fps_s + llGetRegionFPS(), -60, -1);
       if(llGetListLength(dil_s) > 3)
       {
           llSetText(
               "Dilation: min="+(string) llListStatistics(LIST_STAT_MIN, dil_s) + ", mean=" +
                   (string) llListStatistics(LIST_STAT_MEAN, dil_s) + ", max=" +
                   (string) llListStatistics(LIST_STAT_MAX, dil_s) + ", std.dev=" +
                   (string) llListStatistics(LIST_STAT_STD_DEV, dil_s) + "\n" + 
                   "FPS: min="+(string) llListStatistics(LIST_STAT_MIN, fps_s) + ", mean=" +
                   (string) llListStatistics(LIST_STAT_MEAN, fps_s) + ", max=" +
                   (string) llListStatistics(LIST_STAT_MAX, fps_s) + ", std.dev=" +
                   (string) llListStatistics(LIST_STAT_STD_DEV, fps_s),
               <1.0, 1.0, 0.0>, //yellow
               1.0);
       }
   }
   
   changed(integer change)
   {
       if(change & CHANGED_REGION)
       {
           llResetScript();
       }
   }
}</lsl>

See Also

Functions

•  llGetListEntryType

Deep Notes

Search JIRA for related Issues

Signature

function float llListStatistics( integer operation, list src );