Learn R Programming

isingLenzMC (version 0.2.5)

flipConfig1D_R: Given Flip a site randomly

Description

Given a vector of flip sites, 1s or -1s, representing up and down spins respectively, flip any of the site randomly. The function uses default RNG (Marsienne-Twister) unless changed by the user, within R, to generate a vector that contains 1s or -1s. This function is a pure R implementation

Usage

flipConfig1D_R(x)

Arguments

x
1D Spin sites on the lattice

Value

Returns vector that contains 1s or -1s.

Examples

Run this code
  n          <- 10 # 10 spin sites
  mySites    <- genConfig1D_R(n) # Generate sites
  # now flip 
  mySitesNew <- flipConfig1D_R(mySites)

Run the code above in your browser using DataLab