该帮助的版本不再更新,请参见https://www.jmp.com/support/help/zh-cn/15.2 获取最新的版本.


* operator
Multiply() function
Matrix Mult() function
/ operator
Divide() function
To use elementwise multiplication, use :* or the EMult() function.
To use elementwise division, use :/, or the equivalent EDiv() function.
A = [1 2 3, 4 5 6, 7 8 9, 10 11 12];
B = [0 1 2, 2 1 0, 0 1 1, 2 0 0];
C = [1 2 3 4, 4 3 2 1, 0 1 0 1];
D = [0 1 2, 2 1 0, 1 2 0];
Sqrt(), Root(), Log(), Exp(), ^ Power(), Log10()
Abs(), Mod(), Floor(), Ceiling(), Round(), Modulo()
Sine,() Cosine(), Tangent(), ArcSine(), and other trigonometry functions.
Normal Distribution(), and other probability functions.
A = [1 2 3, 4 5 6, 7 8 9, 10 11 12];
B = Sqrt( A ); // elementwise square root