Difference between revisions of "Manuals/calci/CONFERENCE"
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 12: | Line 12: | ||
==Examples== | ==Examples== | ||
− | *MATRIX("conference") | + | *MATRIX("conference") = 0 |
+ | *MATRIX("conference",3) | ||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
Line 40: | Line 41: | ||
==References== | ==References== | ||
+ | *[http://www.maths.qmul.ac.uk/~pjc/csgnotes/conftalk.pdf Conference Matrix] |
Latest revision as of 00:44, 26 October 2015
MATRIX("CONFERENCE",order)
- is the order of the Conference matrix.
Description
- This function shows the matrix which is satisfying the property of Conference.
- A Conference matrix is a square matrix C with diagonal entries 0 and the off diagonal entries are +1 and -1.
- Here the argument MATRIX("conference") is displaying the conference matrix of order 3.
- Also users can get different order of matrices.
- Conference matrices are of two types:
- 1.Symmetric conference matrices.
- 2.Skew conference matrices
Examples
- MATRIX("conference") = 0
- MATRIX("conference",3)
0 | 1 | 1 |
1 | 0 | 1 |
1 | -1 | 0 |
- MATRIX("conference",5)
0 | 1 | -1 | -1 | 1 |
1 | 0 | 1 | 1 | 1 |
-1 | 1 | 0 | -1 | -1 |
-1 | 1 | -1 | 0 | -1 |
1 | 1 | 1 | 1 | 0 |