planerot
Givens plane rotation.
📝Syntax
[G, Y] = planerot(X)
📥Input Arguments
Parameter Description
X two-element column vector.
📤Output Arguments
Parameter Description
G 2 by 2 orthogonal matrix.
Y Y = G * X with Y(2) = 0.
📄Description

[G, Y] = planerot(X) computes the Givens rotation matrix for the two-element column vector X.

💡Examples
X = [4; 5];
[G, X] = planerot(X)
🔗See Also
norm
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub