Created
July 17, 2015 04:36
-
-
Save cametan001/324f8655a17e53f9f10a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Component 1 */ | |
p1 = a12 * s11 - a13n * s10; | |
k = p1 / m1; | |
p1 -= k * m1; | |
if (p1 < 0.0) | |
p1 += m1; | |
s10 = s11; | |
s11 = s12; | |
s12 = p1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment