Description Usage Arguments Value Examples
This function checks if a given preference ordering is complete. If needed, it transforms the indices from R indices (starting at 1) to C++ indices (starting at zero).
1 |
pref |
is a matrix with ordinal preference orderings for one side of the
market. Suppose that |
a matrix with ordinal preference orderings with proper C++ indices or NULL if the preference order is not complete.
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 | # preferences in proper C++ indexing: galeShapley.checkPreferences(pref)
# will return pref
pref <- matrix(c(
0, 1, 0,
1, 0, 1
), nrow = 2, ncol = 3, byrow = TRUE)
pref
galeShapley.checkPreferences(pref)
# preferences in R indexing: galeShapley.checkPreferences(pref)
# will return pref-1
pref <- matrix(c(
1, 2, 1,
2, 1, 2
), nrow = 2, ncol = 3, byrow = TRUE)
pref
galeShapley.checkPreferences(pref)
# incomplete preferences: galeShapley.checkPreferences(pref)
# will return NULL
pref <- matrix(c(
3, 2, 1,
2, 1, 2
), nrow = 2, ncol = 3, byrow = TRUE)
pref
galeShapley.checkPreferences(pref)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.