What is the purpose of using the mod operator in this line of code?

In summary, the code is creating a transition matrix for random walk on an n-cycle. In line 11, the elements in the first row of the matrix are being replaced with the values from the vector r1. The mod operator is being used to select elements from r1 and inject them into the matrix in a circular pattern. The print results show the process of selecting and injecting the elements into the matrix.
  • #1
user366312
Gold Member
89
3
TL;DR Summary
Kindly explain the highlighted lines.
R code:
#==================================================================
# Build the transition matrix for random walk on n-cycle
#------------------------------------------------------------------
n <- 25  # we are creating (nXn) transition matrix
r1 <- c(0, 1/2, rep(0,n-3), 1/2) # create same values 22 times...
tmat <- matrix(0, nrow=n, ncol=n) # create a 0-matrix
tmat[1,] <- r1 # inject values in 'r1' into 'tmat' along the 1st row

for (i in 1:(n-1))
{
    tmat[26-i,] <- r1[1 + (i:(n+i-1)) %% n] # ? mod operator
}
#=================================================================

What are being done in line#11?

How are elements being selected using mod operator?
 
Technology news on Phys.org
  • #2
It really helps to print results and intermediate calculations.
I ran it with this code right after the calculation of r1:
Code:
print("r1")
print( r1 )
And this at the bottom of the loop:
R print code at bottom of loop:
print("1 + (i:(n+i-1)) %% n")
print(1 + (i:(n+i-1)) %% n)
print("26-i")
print(26-i)
print("tmat")
print(tmat[26-i,])

The beginning of the print results are:
Start of print results:
[1] "r1"
 [1] 0.0 0.5 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5
[1] "1 + (i:(n+i-1)) %% n"
 [1]  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25  1
[1] "26-i"
[1] 25
[1] "tmat"
 [1] 0.5 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5 0.0
[1] "1 + (i:(n+i-1)) %% n"
 [1]  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25  1  2
[1] "26-i"
[1] 24
[1] "tmat"
 [1] 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5 0.0 0.5
 
  • Like
Likes sysprog and jedishrfu

1. What is R source code?

R source code is the set of instructions written in the R programming language that is used to create statistical and graphical software. It is an open-source language, meaning that it is freely available for anyone to use and modify.

2. How do I read and understand R source code?

To read and understand R source code, you need to have a basic understanding of the syntax and structure of the R language. You can start by familiarizing yourself with the basic data types, functions, and control structures in R. Additionally, using an integrated development environment (IDE) or a text editor specifically designed for R can make it easier to read and navigate through the code.

3. How can I debug R source code?

Debugging R source code involves identifying and fixing errors or bugs in the code. There are several debugging tools available in R, such as the debug() function, which allows you to step through the code line by line and check the values of variables. Additionally, using try() and tryCatch() functions can help you handle errors and exceptions in your code.

4. Is it necessary to know R source code to use R?

No, it is not necessary to know R source code to use R. R has a wide range of packages and functions that can be used without knowing the underlying source code. However, having a basic understanding of R source code can help you troubleshoot any issues and customize your code to better suit your needs.

5. How can I contribute to R source code?

You can contribute to R source code by reporting bugs, suggesting improvements, or writing and submitting your own code. The official R website has guidelines for contributing to the language. Additionally, you can also contribute to the development of R packages, which extend the functionality of R and are available for anyone to use.

Similar threads

Replies
3
Views
996
  • Programming and Computer Science
Replies
9
Views
1K
  • Programming and Computer Science
Replies
6
Views
3K
  • Programming and Computer Science
Replies
4
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
1K
  • Programming and Computer Science
Replies
4
Views
1K
  • Programming and Computer Science
Replies
1
Views
2K
  • Atomic and Condensed Matter
Replies
3
Views
870
  • Programming and Computer Science
Replies
6
Views
5K
  • Programming and Computer Science
Replies
8
Views
1K
Back
Top