View source: R/Check_Sudoku_Design.R
Check_Sudoku_Design | R Documentation |
Check Properties of Sudoku Designs
Check_Sudoku_Design(Design, Region)
Design |
Give the Sudoku design in a matrix format |
Region |
Provide a Region matrix corresponding to Sudoku design |
Design along with design parameters, C matrix (Information matrix), eigenvalues(EVs) and canonical efficiency factor (CEF) of a given Sudoku design
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.