cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.
  • See how to access JMP Marketplace - and - find, create & share add-ins to extend your JMP. Watch video.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
mostarr
Level IV

What do square brackets mean in JMP/JSL?

I have, in a loop:

to_update = dt << get rows where (num(dt:Number) == ID);
write(to_update);

giving

...
[199, 200]
...
[209, 210]
...

What do square brackets mean, therefore?

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: What do square brackets mean in JMP/JSL?

Square brackets refer to matrices.
a = [ 1, 2, 3 ];
or they refer to subscripts in lists
bList = { "A", "B:, "C" };
x =blist[1];

I suggest you take the time to read the Scripting Guide, which is found in the JMP Documentation Library, found under the Help pull down menu. It will give you the details of the structures and syntax of JSL.
Jim

View solution in original post

1 REPLY 1
txnelson
Super User

Re: What do square brackets mean in JMP/JSL?

Square brackets refer to matrices.
a = [ 1, 2, 3 ];
or they refer to subscripts in lists
bList = { "A", "B:, "C" };
x =blist[1];

I suggest you take the time to read the Scripting Guide, which is found in the JMP Documentation Library, found under the Help pull down menu. It will give you the details of the structures and syntax of JSL.
Jim

Recommended Articles