Programming language J (2024)

J is an array programming language, developed in 1990 by Kenneth Iverson and Roger Hui. It is a synthesis of APL (earlier language by Iverson) and FP and FL languages created by John Backus.

Despite sharing the concept and the author with APL, J differs from it quite a lot. For example, J has no concept of a variable — it’s a function-level language, so the best it has are function renames. The authors also dropped special characters from the notation — the programs are written using 7-bit ASCII charset, and each function is written with at most two characters.

A distinctive feature of J is using grammar terms to describe entities of the program. Data pieces are called nouns, functions are verbs, and functions-creating operators are adverbs. Note that J allows to create user-defined adverbs, without restricting the programmer to the built-in ones.

Same as APL, J has only one data structure — hom*ogenous arrays of arbitrary dimensions. To organize more complex data structures, one can use boxing principle inherited from APL.

J introduces a set of block-oriented flow controls typical for procedural languages: loops, conditional statements and exception handlers.

Unlike APL, J programs and data are stored not in workspaces but in script files available to any text editor.

Examples:

Hello, World!:

Example for versions j602

1!:2 is the dyadic foreign conjunction for writing text, the left argument is the string to be written and the right argument specifies the file number, a file number 2 indicates that the text is to be written to the screen.

Alternatively we can use currying to convert the dyadic write conjunction into a monadic conjunction using the bond (&) operator and assign it to a named print function.

The printf library may also be used to print text to the screen.

'Hello, World!' 1!:2]2print=: 1!:2&2print 'Hello, World!'load 'printf''' printf 'Hello, World!\n'

Fibonacci numbers:

Example for versions j602

This example uses the recursive definition of Fibonacci numbers. @.(agenda) is a higher order dyadic function taking an array of functions(a gerund, created by tying together individual functions using the tie conjunction represented by a back-tick character) on the left and a function on the right that computes the index of the function in the function array(gerund) to be applied on the called argument.

The general call to agenda:

f1`f2@.g x

The function g is used to calculate an index using the argument x, this index is then used to select the function to be applied from the left argument of agenda, the function array. The function that is selected is then applied to the original argument x.

In the case of the above Fibonacci function, applying the semantics of the agenda function we get a function which checks whether its argument is less than two, if it is then 1 is returned otherwise the formal recursive calculation of the Fibonacci number is called on the argument.

load 'printf'fibr=: 1:`(-&2 +&$: -&1)@.(2&<)"0fstr=: '...' ,~ ,~^:4 '%d, 'fstr printf fibr >: i.16

Fibonacci numbers:

Example for versions j602

This example uses iterative definition of Fibonacci numbers.

load 'printf'fibi=: 3 : '(,+/@(_2&{.))^:y(0 1)'fstr=: '...' ,~ ,~^:4 '%d, 'fstr printf }.fibi 15

Fibonacci numbers:

Example for versions j602

This example uses Binet’s formula.

g =: -: >: %:5 is equivalent to g =: 0.5 * (1 + 5 ^ 0.5) and assigns name g to value of golden ratio. %: extracts square root of the number, >: increments the number, -: divides the number by two. Operations are done from right to left, unless there are no parenthesis in the formula.

fibb=: (%:5) %~ g&^ -- (1-g)&^ is equivalent to fibb =: (0.2 ^ 0.5) * (g &^ -- (1-g) &^); this defines a formula for F(n) given the value of n. %~ is division, with dividend and divisor swapped.

i.16 generates numbers from 0 to 15, inclusive.

load 'printf'g=: -: >: %:5fibb=: (%:5) %~ g&^ - (1-g)&^fstr=: '...' ,~ ,~^:4 '%d, 'fstr printf fibb 1+i.16

Factorial:

Example for versions j602

This example implements three methods of calculating factorial. fact represents a factorial function which generates the first n integers as an array and multiplies them together. factr represents the recursive definition. ! is the built-in factorial function.

load 'printf'fact=: [: */ [: >: i.factr=: 1:`(]*$:@<:)@.*'!%d = %d' printf (,"0 fact) i.17x'!%d = %d' printf (,"0 factr) i.17x'!%d = %d' printf (,"0 !) i.17x

Quadratic equation:

Example for versions j602

Run calc'' in an interactive J session after loading the file. The function calc2 calculates the roots of the equation using J’s built in root function(p.).

print=: 1!:2&2read=: 3 : '". 1!:1[1'a=: 0&{ [ b=: 1&{ [ c=: 2&{d=: *:@b - [:*/4,a,croots=: ([:-b%2*a)`(+:@a %~ (,-)@%:@d + -@b)@.([:*/*)input=: 3 : 0A=: read'' [ print 'A = 'B=: read'' [ print 'B = 'C=: read'' [ print 'C = ')calc=: 3 : 0input''if. A=0 do. print 'Not a quadratic equation' throw. end.rt=: roots A,B,Cdisp rt)disp=: 3 : 0form=: ((('('&,)@":@{.,',',(,&')')@":@}.)@+.)`":@.(=+)if. 1<# ~.y do. print 'x1 = ', form 0{y print 'x2 = ', form 1{yelse. print 'x = ', form {.yend.)calc2=: 3 : 0input''rt=: ;}.p.|.A,B,Cdisp rt)

Fibonacci numbers:

Example for versions j602

Maxtrix closed form

load 'printf'mat =: 1 1,.1 0fibm=: 3 : '1 { , mat&(+/ . *)^:y mat'"0fstr=: '...' ,~ ,~^:4 '%d, 'fstr printf fibm >:i.16

Programming language J (1)
Fibonacci Matrix Closed Form

CamelCase:

Example for versions j602

alpha is the set of upper and lower case alphabetic characters.

camel is an explicit solution to the problem, meaning that the variables to the function(y) are mentioned in the function body. The strategy used is to calculate the indices(i) of the alphabetic characters from the bit vector(b) which represents whether or not a character is alphabetic. The function then takes the leading index of each interval of these alphabetic characters and uses that to replace them by their capitalized form. Finally the string is sieved using b so that it contains only the alphabetic characters.

camel2 is a tacit definition, it cuts the input string at the delimiters(non-alphabetic characters), leaving a collection of boxed strings. The leading character of each of these boxed strings is then capitalized and they are all concatenated together forming the final result.

camel3 takes advantage of the built-in libraries, a regular expression is used to split the string into boxed strings, each of these is then capitalized and concatenated.

In all three functions the input is first converted to lower case.

check can be used to ensure that all the functions produce equivalent output.

alpha=: a.{~,65 97+/i.26camel=: 3 : 0y=. tolower yi=. I. (> 0,}:) b=. y e. alpha(b # toupper@(i&{) i} ]) y)isalpha=: e.&alphacapital=: (toupper@{.,}.)^:(1<:#)format =: [: ,&' ' tolowercase =: [: ; [: capital&.> ] <;._2~ [: -. isalphacamel2 =: case@formatrequire'regex text'camel3=: [: ; [: capitalize&.> [: '[a-zA-Z]+'&rxall tolowercheck=: [: ,. camel;camel2;camel3
Programming language J (2024)
Top Articles
Serengeti - Africa Geographic
The Serengeti: Everything You Need to Know | Ultimate Kilimanjaro
Jack Doherty Lpsg
Skyward Sinton
No Limit Telegram Channel
Visitor Information | Medical Center
Big Spring Skip The Games
Geodis Logistic Joliet/Topco
Plus Portals Stscg
Nikki Catsouras Head Cut In Half
Displays settings on Mac
AB Solutions Portal | Login
What's New on Hulu in October 2023
Craigslist Chautauqua Ny
Obituary | Shawn Alexander | Russell Funeral Home, Inc.
World History Kazwire
Robert Malone é o inventor da vacina mRNA e está certo sobre vacinação de crianças #boato
Zürich Stadion Letzigrund detailed interactive seating plan with seat & row numbers | Sitzplan Saalplan with Sitzplatz & Reihen Nummerierung
Costco Gas Foster City
Seattle Rpz
Snow Rider 3D Unblocked Wtf
Find Such That The Following Matrix Is Singular.
Gem City Surgeons Miami Valley South
Jbf Wichita Falls
Welcome to GradeBook
Mahpeople Com Login
Swgoh Blind Characters
Www Craigslist Com Bakersfield
How Taraswrld Leaks Exposed the Dark Side of TikTok Fame
Sand Dollar Restaurant Anna Maria Island
Arrest Gif
Cardaras Funeral Homes
Bridgestone Tire Dealer Near Me
Fbsm Greenville Sc
Envy Nails Snoqualmie
Boggle BrainBusters: Find 7 States | BOOMER Magazine
Cl Bellingham
Frank 26 Forum
Plead Irksomely Crossword
Infinite Campus Farmingdale
Dcilottery Login
8776725837
✨ Flysheet for Alpha Wall Tent, Guy Ropes, D-Ring, Metal Runner & Stakes Included for Hunting, Family Camping & Outdoor Activities (12'x14', PE) — 🛍️ The Retail Market
Go Nutrients Intestinal Edge Reviews
Tacos Diego Hugoton Ks
Phmc.myloancare.com
Kushfly Promo Code
Naomi Soraya Zelda
Jimmy John's Near Me Open
Amourdelavie
Pulpo Yonke Houston Tx
Public Broadcasting Service Clg Wiki
Latest Posts
Article information

Author: Prof. Nancy Dach

Last Updated:

Views: 5976

Rating: 4.7 / 5 (77 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Prof. Nancy Dach

Birthday: 1993-08-23

Address: 569 Waelchi Ports, South Blainebury, LA 11589

Phone: +9958996486049

Job: Sales Manager

Hobby: Web surfing, Scuba diving, Mountaineering, Writing, Sailing, Dance, Blacksmithing

Introduction: My name is Prof. Nancy Dach, I am a lively, joyous, courageous, lovely, tender, charming, open person who loves writing and wants to share my knowledge and understanding with you.