R/Walsh8.R

Defines functions Walsh8

Documented in Walsh8

##############################################################################
#                                                                            #
#                             WALSH-HADAMARD OPERATION                       #
#                                                                            #
##############################################################################

#' @title
#' Walsh-Hadamard gate
#'
#' @description
#' This function operates the Walsh-8 gate on a conformable input matrix or vector.
#'
#' @param n a vector/matrix
#'
#' @usage
#' Walsh8(n)
#'
#' @return A matrix or a vector after performing the Walsh-8 gate operation on a conformable input matrix or a vector.
#'
#' @references
#' \url{https://en.wikipedia.org/wiki/Quantum_logic_gate}\cr
#' \url{http://www2.optics.rochester.edu/~stroud/presentations/muthukrishnan991/LogicGates.pdf}\cr
#' \url{https://arxiv.org/pdf/quant-ph/0506219.pdf}\cr
#' \url{https://en.wikipedia.org/wiki/Hadamard_transform}\cr
#'
#' @examples
#' init()
#' Walsh8(Q$I8)
#' Walsh8(Q$Q000)
#'
#' @export
#'

Walsh8 <- function(n){
  h <- Hadamard(Q$I2)
  w <- kronecker(kronecker(h, h), h)
  return (w %*% n)
}

Try the QGameTheory package in your browser

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

QGameTheory documentation built on July 8, 2020, 7:27 p.m.