Scripting Guide > Data Structures > Matrices in JSL Scripts > Build Your Own Matrix Functions
发布日期: 09/18/2023

Build Your Own Matrix Functions

You can store your own JSL operations in macros. See Maximize and Minimize Functions. Similarly, you can create custom matrix functions. For example, you can make your own matrix operation called Mag() to find the magnitude of a vector:

mag = Function( {x},
	Sqrt( x` * x )
);

Similarly, you could create a function called Normalize to divide a vector by its magnitude:

normalize = Function( {x},
	x / Sqrt( x` * x )
);
需要更多信息?有问题?从 JMP 用户社区得到解答 (community.jmp.com).