mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
20 lines (19 loc) • 567 B
JavaScript
export const rotationMatrixDocs = {
name: 'rotationMatrix',
category: 'Matrix',
syntax: [
'rotationMatrix(theta)',
'rotationMatrix(theta, v)',
'rotationMatrix(theta, v, format)'
],
description: 'Returns a 2-D rotation matrix (2x2) for a given angle (in radians). ' +
'Returns a 2-D rotation matrix (3x3) of a given angle (in radians) around given axis.',
examples: [
'rotationMatrix(pi / 2)',
'rotationMatrix(unit("45deg"), [0, 0, 1])',
'rotationMatrix(1, matrix([0, 0, 1]), "sparse")'
],
seealso: [
'cos', 'sin'
]
}