Learn R Programming

QCSimulator (version 0.0.1)

innerProduct: Inner product of 2 vectors and computes the angle between vectors

Description

This function performs a inner product of 2 vectors and outputs the angle between vectors

Usage

innerProduct(a,b)

Arguments

a
Vector 1
b
Vector 2

Value

theta The angle between the vectors

References

https://quantumexperience.ng.bluemix.net/ https://gigadom.wordpress.com/2016/06/23/introducing-qcsimulator-a-5-qubit-quantum-computing-simulator-in-r/

See Also

CNOT2_10 PauliX measurement plotMeasurement CNOT5_03 CNOT5_13

Examples

Run this code
# Initialze global variables
init()
phi = matrix(c(1/2,sqrt(3)/2),nrow=2,ncol=1)
si = matrix(c(1/sqrt(2),1/sqrt(2)),nrow=2,ncol=1)
innerProduct(phi,si)


Run the code above in your browser using DataLab