Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Due to spam on this forum, all posts now need moderator approval.
Entire forum
➜ MUSHclient
➜ General
➜ 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 page
Posted by
| Tkl1129
Hong Kong (43 posts) 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.
| Top |
|
Posted by
| Nick Gammon
Australia (23,133 posts) 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 | 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.
8,773 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top