Check_Sudoku_Design {SudokuDesigns} | R Documentation |
Check Properties of Sudoku Designs
Description
Check Properties of Sudoku Designs
Usage
Check_Sudoku_Design(Design, Region)
Arguments
Design |
Give the Sudoku design in a matrix format |
Region |
Provide a Region matrix corresponding to Sudoku design |
Value
Design along with design parameters, C matrix (Information matrix), eigenvalues(EVs) and canonical efficiency factor (CEF) of a given Sudoku design
Examples
library(SudokuDesigns)
design<-matrix(c(1,2,3,4,3,4,1,2,2,1,4,3,4,3,2,1),nrow=4,ncol=4,byrow=TRUE)
region<-matrix(c(1,1,2,2,1,1,2,2,3,3,4,4,3,3,4,4),nrow=4,ncol=4,byrow=TRUE)
Check_Sudoku_Design(design,region)
[Package SudokuDesigns version 1.2.0 Index]