Skip to Content
Lua Quick Start Guide
book

Lua Quick Start Guide

by Gabor Szauer
July 2018
Beginner
202 pages
5h 42m
English
Packt Publishing
Content preview from Lua Quick Start Guide

Multidimensional arrays

Some languages such as C# have native support for multidimensional arrays; Lua does not. You can create a multidimensional array in Lua by creating an array of arrays (really a table of tables). Doing so means you have to declare every element of an array to be a new row in the matrix or another array. You can achieve this as follows:

num_rows = 4num_cols = 4matrix = {} -- create new matrixfor i=1,num_rows do  matrix[i] = {} -- create new row  for j=1,num_cols do    matrix[i][j] = i * j -- Assign value to row i, column j  endend

Once you have a matrix with several rows created, you can use double brackets to access elements within the matrix. The following piece of code shows this:

num_rows = 4num_cols = 4values = { 'A', ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Beginning Lua Programming

Beginning Lua Programming

Kurt Jung, Aaron Brown
Vim Masterclass

Vim Masterclass

Jason Cannon

Publisher Resources

ISBN: 9781789343229Supplemental Content