Scripting Guide > Data Structures > Lists > Perform Operations in Lists
发布日期: 04/13/2021

Perform Operations in Lists

In lists, you can perform operations.

a = {{1, 2}, 3, {4, 5}};
b = {{10, 20}, 30, {40, 50}};
c = a + b;

c = {{11, 22}, 33, {44, 55}}

需要更多信息?有问题?从 JMP 用户社区得到解答 (community.jmp.com).