[Home] [Downloads] [Search] [Help/forum]


Register forum user name Search FAQ

Gammon Forum

[Folder]  Entire forum
-> [Folder]  MUSHclient
. -> [Folder]  General
. . -> [Subject]  Find the Minimum number value in table

Find the Minimum number value in table

It is now over 60 days since the last post. This thread is closed.     [Refresh] Refresh page


Posted by Tkl1129   Hong Kong  (43 posts)  [Biography] bio
Date Sat 16 Feb 2013 02:32 AM (UTC)
Message
Hi, as I'd read those help files, the only function to find the minimum value is "math.min", but however the using method is "math.min(v1,v2,v3,v4)", I wanna ask that how to apply this function or any other method to calculate in table?

Case:

a = {"6","5","3","2","8"}

how to get "b = 2" since 2 is the minimum value in the table?

# the value numbers of table is not fixed, maybe sometime up to over 100 values, so cannot put in hard code.



[Go to top] top

Posted by Nick Gammon   Australia  (22,991 posts)  [Biography] bio   Forum Administrator
Date Reply #1 on Sat 16 Feb 2013 04:26 AM (UTC)
Message

a = {"6","5","3","2","8"}

result = 9999999  -- some large number

for k, v in ipairs (a) do
  result = math.min (result, v)
end -- for

print ("minimum was", result)

- Nick Gammon

www.gammon.com.au, www.mushclient.com
[Go to top] top

The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).

To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.


7,992 views.

It is now over 60 days since the last post. This thread is closed.     [Refresh] Refresh page

Go to topic:           Search the forum


[Go to top] top

Quick links: MUSHclient. MUSHclient help. Forum shortcuts. Posting templates. Lua modules. Lua documentation.

Information and images on this site are licensed under the Creative Commons Attribution 3.0 Australia License unless stated otherwise.

[Home]


Written by Nick Gammon - 5K   profile for Nick Gammon on Stack Exchange, a network of free, community-driven Q&A sites   Marriage equality

Comments to: Gammon Software support
[RH click to get RSS URL] Forum RSS feed ( https://gammon.com.au/rss/forum.xml )

[Best viewed with any browser - 2K]    [Hosted at HostDash]