Latin Square

13 visualizzazioni (ultimi 30 giorni)
eddie ball
eddie ball il 15 Ago 2011
Modificato: Xin Niu il 13 Set 2020
I am trying to create a matlab function that returns the number of latin squares for a given size n (where n is around 5). I would like to do this simply by checking all matricies of size n (where the matrix is filled with number 1-n). I am hoping to make it more efficient later but this is my start but i am stuck at trying to figure out how to get matlab to change the matrix by one number. for example, starting with a matrix
M = [3 3 3; 3 3 3; 3 3 3] checking to see if its a Latin square, then checking the next matrix
M = [3 3 3; 3 3 3; 3 3 2]
then
M = [3 3 3; 3 3 3; 3 3 2]
then
M = [3 3 3; 3 3 3; 3 3 1]
then
M = [3 3 3; 3 3 3; 3 2 3]
...
I can do this if i assume a value for n, but without this assumption i cant figure it out. If i knew n, i could just do 9 for loops, but if n were 4 for example, the code would need to be changed to have 16 for loops.
Any help would be greatly appreciated.
Thankyou
  1 Commento
Xin Niu
Xin Niu il 25 Set 2018
Modificato: Xin Niu il 13 Set 2020
Hi, I also had similar questions and finally figured out an answer. Here is my code:
If you use for loop to fill the numbers, the problem is that the codes are different for even and odd input N. And it's more efficient to use circshift function. Also, in most cases we may prefer to create a latin square with interleaved orders which has better order balance like this:
CreateLatinSquare(5)
ans =
1 2 5 3 4
2 3 1 4 5
3 4 2 5 1
4 5 3 1 2
5 1 4 2 3
(note that in all the rows, the case 3 before 4 and 4 before 3 are balanced)

Accedi per commentare.

Risposte (4)

Jan
Jan il 15 Ago 2011
You actually look for a method to create combinations with repetitions. There are some functions in the FEX for this task - I assume this one is the fastest: FEX: VChooseKRO, but you need a C-compiler to install it. FEX: Combinator is an efficient method in pure Matlab.
Another method would be the direct approach:
ready = false;
k = ones(1, n*n);
jj = n*n;
while not(ready)
<here do the check for the vector k>
j = jj;
k(j) = k(j) + 1;
while k(j) > n
k(j) = 1;
j = j - 1;
if j == 0
ready = true;
break;
end
k(j) = k(j) + 1;
end
end
  1 Commento
eddie ball
eddie ball il 16 Ago 2011
hey thanks alot! i want to see if i can use a direct approach, and will see if i can use what you have shown me
thanks again

Accedi per commentare.


Walter Roberson
Walter Roberson il 15 Ago 2011
You could adapt the "odometer" algorithms from this old discussion. I know I have implemented it in MATLAB more than once. I didn't bother specifically saving the code as it becomes easy to reproduce once one grasps the idea of the algorithm.
  2 Commenti
Jan
Jan il 15 Ago 2011
For an adaption, see my answer...
eddie ball
eddie ball il 16 Ago 2011
hey thanks for the advice, i will look into it and see if i can use it

Accedi per commentare.


Image Analyst
Image Analyst il 16 Ago 2011
Those don't look like Latin Squares as I know them. You give row vectors instead of actual square matrices like the squares on the Wikipedia page. I have Visual Basic code for generating Latin Squares if you need it. Have you seen the Wikipedia page with the formula for number of Latin Squares as a function of n? http://en.wikipedia.org/wiki/Latin_square
  1 Commento
eddie ball
eddie ball il 16 Ago 2011
lol yeah i typed them as matricies but i guess i didnt enter it in correctly.
I did look at the wikipedia page and i saw the answers but i wanted to see if i could write a code to get those answers. If at all possible id love to see the Visual Basic code for generating latin squares.
Thanks!

Accedi per commentare.


Xin Niu
Xin Niu il 13 Set 2020
Modificato: Xin Niu il 13 Set 2020
perhaps this will be faster?
n=5;
latinSquare=nan(n);
latinSquare(:,1)=1:n;
shiftsize=(.5-mod(1:n-1,2))/.5.*ceil((1:n-1)/2);
for col=2:n
latinSquare(:,col)=circshift((1:n)',shiftsize(col-1));
end

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Prodotti

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by