Mercurial > hg > octave-nkf
comparison scripts/control/rotg.m @ 3385:10f21f7ccc7f
[project @ 1999-12-15 22:28:26 by jwe]
author | jwe |
---|---|
date | Wed, 15 Dec 1999 22:28:52 +0000 |
parents | 69b167451491 |
children | 1a8e2c0d627a |
comparison
equal
deleted
inserted
replaced
3384:6735e4c759a2 | 3385:10f21f7ccc7f |
---|---|
19 ## function [c,s] = rotg(a,b) | 19 ## function [c,s] = rotg(a,b) |
20 ## givens rotation calculation | 20 ## givens rotation calculation |
21 ## | 21 ## |
22 ## NOTE: Use [c,s] = givens(a,b) instead. | 22 ## NOTE: Use [c,s] = givens(a,b) instead. |
23 | 23 |
24 function [c,s] = rotg(a,b) | 24 function [c, s] = rotg (a, b) |
25 | 25 |
26 [c,s] = givens(a,b); | 26 [c,s] = givens(a,b); |
27 endfunction | 27 endfunction |