Julia-R Cheatsheet – Creating Vectors

Creating Vectors

How to create vectors in Julia and R? The following table translates the most common Julia commands into R language.

Julia R
Create a row vector
 
A = [1 2 3]
 
A = c(1,2,3)
Create a column vector
 
A = [1 2 3]'
 
A = matrix(c(1,2,3),3,1)
Create integers from j to n with step size k
 
A = j:k:n
 
A = seq(j,n,k)
Create linearly spaced vector of k points
 
A = linspace(1, 5, k)
 
A = seq(0, 1, length.out = 10)

Complete Julia-R Cheatsheet
1) Creating Vectors
2) Creating Matrices
3) Creating Random Numbers
4) Manipulating Vectors and Matrices
5) Accessing Vector/Matrix Elements

Advertisement

5 thoughts on “Julia-R Cheatsheet – Creating Vectors”

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.