The default arithmetics in R are element-wise, unlike MATLAB
The interactive shell of R uses an indicator [x] to show the index of the printed vector
example:
> x <- 11:30 > x [1] 11 12 13 14 15 16 17 18 19 20 21 22 [13] 23 24 25 26 27 28 29 30 ```- Use function `View()` to view data in a specific RStudio viewer