R/baseseq.R

Defines functions baseseq

Documented in baseseq

#' baseseq
#'
#' Extracts the selection of Basesequences from internal dataset. Not exported.
#'
#'
#' @param order integer
#' @return
#' Required Basesequences of order of x
#' @details Create Basesequence of given order from the internal dataset Basesequence
#' Base sequences are available in the internal table for order= 1:35
#' @source
#' The Base sequences were obtained from \href{http://www.math.ntua.gr/~ckoukouv/}{Christos Koukouvinos}
#'
#' @references
#' Goethals, J. M. and Seidel, J. J. (1967). Orthogonal matrices with zero diagnol. Canad. J. Math., 19, 259-264.
#'

baseseq <- function(order){
  dat <- subset(Basesequences,Basesequences$BaseOrder==order)
  return(dat)
}

Try the HadamardR package in your browser

Any scripts or data that you put into this service are public.

HadamardR documentation built on April 14, 2020, 7:01 p.m.