Girish Mahajan (Editor)

Yorick (programming language)

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Designed by
  
Filename extensions
  
.i

License
  
First appeared
  
1996; 21 years ago (1996)

Stable release
  
2.2.04 / May 2015; 1 year ago (2015-05)

OS
  
Unix-like systems including macOS, Microsoft Windows

Yorick is an interpreted programming language designed for numerics, graph plotting, and steering large scientific simulation codes. It is quite fast due to array syntax, and extensible via C or Fortran routines. It was created in 1996 by David H. Munro of Lawrence Livermore National Laboratory.

Indexing

Yorick is good at manipulating elements in N-dimensional arrays conveniently with its powerful syntax.

Several elements can be accessed all at once:

Arbitrary elements
Pseudo-index

Like "theading" in PDL (Perl Data Language) and "broadcasting" in Numpy (Numeric extension for Python), Yorick has a mechanism to do this:

Rubber index

".." is a rubber-index to represent zero or more dimensions of the array.

"*" is a kind of rubber-index to reshape a slice(sub-array) of array to a vector.

Tensor multiplication

Tensor multiplication is done as follows in Yorick:

P(,+,,)*Q(,,+)

means j = 1 j = N P i j k l Q m n j

References

Yorick (programming language) Wikipedia


Similar Topics