Difference between revisions of "Manuals/calci/MATRIXOPERATORS"
Jump to navigation
Jump to search
Line 45: | Line 45: | ||
|} | |} | ||
*MATRIX("relation") | *MATRIX("relation") | ||
+ | {| class="wikitable" | ||
+ | |- | ||
+ | | 1 || 1 || 1 | ||
+ | |- | ||
+ | | 0 || 0 || 0 | ||
+ | |- | ||
+ | | 0 || 0 || 0 | ||
+ | |} | ||
− | *MATRIX("(0,1)", | + | *MATRIX("(0,1)",5) |
+ | {| class="wikitable" | ||
+ | |- | ||
+ | | 0 || 1 || 1 || 1 || 0 | ||
+ | |- | ||
+ | | 1 || 0 || 1 || 1 || 1 | ||
+ | |- | ||
+ | | 0 || 0 || 0 || 1 || 1 | ||
+ | |- | ||
+ | | 0 || 1 || 1 || 0 || 0 | ||
+ | |- | ||
+ | | 1 || 1 || 0 || 1 || 1 | ||
+ | |} |
Revision as of 08:07, 17 April 2015
MATRIX OPERATORS("op-type")
- is the value of the function.
Description
- This function gives the matrix with the values of 0 and 1.
- Here MATRIX("op-type"), where op-type is the type of operations.
- There are 5 types of operations:1. Logical 2. Boolean 3. Relation 4. Binary 5.(0,1).
- A logical matrix, binary matrix, relation matrix, Boolean matrix, or (0,1) matrix is a matrix with entries from the Boolean domain B = {0, 1}.
- Such a matrix can be used to represent a binary relation between a pair of finite sets.
- These types of matrices having only with the elements 0 and 1.
- The syntax of matrices are Logical: MATRIX("logical") gives the matrix with the element 0 and 1 of order 3x3.
- Boolean:MATRIX("boolean") or MATRIX("boolean",5).
- Relation:MATRIX("relation")
- Binary:MATRIX("binary",5) is showing the matrix of order 5x5 with 0 and 1.
- (0,1): MATRIX("(0,1)") is showing the matrix of element 0 and 1.
Examples
- MATRIX("logical")
0 | 0 | 1 |
1 | 0 | 1 |
0 | 1 | 1 |
- MATRIX("binary",4)
1 | 1 | 1 | 0 |
0 | 0 | 0 | 0 |
1 | 0 | 0 | 0 |
1 | 1 | 1 | 0 |
- MATRIX("boolean",2)
1 | 0 |
0 | 1 |
- MATRIX("relation")
1 | 1 | 1 |
0 | 0 | 0 |
0 | 0 | 0 |
- MATRIX("(0,1)",5)
0 | 1 | 1 | 1 | 0 |
1 | 0 | 1 | 1 | 1 |
0 | 0 | 0 | 1 | 1 |
0 | 1 | 1 | 0 | 0 |
1 | 1 | 0 | 1 | 1 |