Description Usage Format Examples
The matrix contains 3^3 types of objects.
It essentially specifies the 3 feature expressions for each object thus, the matrix maps objects to matching utterances. The matrix contains the index mapping of all possible feature values:
cloud = 1, circle = 2, square = 3
solid = 4, striped = 5, dotted = 6
blue = 7, red = 8, green = 9
The strings of the index mapping are contained in the matrix
allObjects.
| 1 | 
An object of class matrix (inherits from array) with 27 rows and 3 columns.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | ## Not run: 
output:
      [,1] [,2] [,3]
[1,]    1    4    7
[2,]    2    4    7
[3,]    3    4    7
[4,]    1    5    7
[5,]    2    5    7
[6,]    3    5    7
[7,]    1    6    7
[8,]    2    6    7
[9,]    3    6    7
[10,]    1    4    8
[11,]    2    4    8
[12,]    3    4    8
[13,]    1    5    8
[14,]    2    5    8
[15,]    3    5    8
[16,]    1    6    8
[17,]    2    6    8
[18,]    3    6    8
[19,]    1    4    9
[20,]    2    4    9
[21,]    3    4    9
[22,]    1    5    9
[23,]    2    5    9
[24,]    3    5    9
[25,]    1    6    9
[26,]    2    6    9
[27,]    3    6    9
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.