sinm
Computes the matrix sinus of a square matrix.
📝Syntax
res = sinm(x)
📥Input Arguments
Parameter Description
x a numeric value: scalar or square matrix
📤Output Arguments
Parameter Description
res a numeric value: a square matrix
📄Description

sinm(x) computes the matrix sinus of x.

💡Examples
A = eye(3, 3);
res = sinm(A)
A = [1, 2; 3, 4];
res = sinm(A)
🔗See Also
sin
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub