高斯消元法求解方程组(C#实现)

作者:追风剑情 发布于:2017-11-5 12:30 分类:Algorithms

     高斯消元法的主要思想是通过对系数矩阵进行行变换,将方程组的系数矩阵由对称矩阵变为三角矩阵,从而达到消元的目的,最后通过回代逐个获得方程组的解。

     高斯消元法的实现简单,主要由两个步骤组成:第一个步骤就是通过选择主元,逐行消元,最终形成方程组系数矩阵的三角矩阵形式;第二步骤就是逐步回代的过程,最终矩阵的对角线上的元素就是方程组的解。


  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace Test4
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. //测试数据
  11. /*
  12. * 2x + 3y + z = 6
  13. * x - y + 2z = -1
  14. * x + 2y - z = 5
  15. */
  16. float[] matrix = new float[] { 2, 3, 1,
  17. 1, -1, 2,
  18. 1, 2, -1};
  19. float[] value = new float[] { 6, -1, 5 };
  20.  
  21. float[] result = GuassEquation.Resolve(matrix, 3, value);
  22. if (null != result)
  23. {
  24. Console.WriteLine("解: x={0}, y={1}, z={2}", result[0], result[1], result[2]);
  25. }
  26. Console.Read();
  27. }
  28. }
  29.  
  30. /// <summary>
  31. /// 高斯消元法求解方程组
  32. /// </summary>
  33. public class GuassEquation
  34. {
  35. //矩阵维数
  36. private static int m_DIM;
  37. //一维数组形式存放的系数矩阵(必须是方阵)
  38. private static float[] m_Matrix;
  39. //方程组的值
  40. private static float[] m_Value;
  41.  
  42. public static float[] Resolve(float[] matrix, int dim, float[] value)
  43. {
  44. if (matrix.Length / dim != dim || value.Length != dim)
  45. {
  46. throw new ArgumentException("Error, not square matrix.");
  47. }
  48.  
  49. m_Matrix = matrix;
  50. m_DIM = dim;
  51. m_Value = value;
  52.  
  53. /*消元,得到上三角阵*/
  54. for(int i = 0; i < m_DIM - 1; i++)
  55. {
  56. /*按列选主元*/
  57. int pivotRow = SelectPivotalElement(i);
  58. if (pivotRow != i)
  59. {
  60. SwapRow(i, pivotRow);
  61. }
  62.  
  63. //主元为0时,不存在唯一解
  64. if (IsPrecisionZero(i))
  65. {
  66. Console.WriteLine("不存在唯一解");
  67. return null;
  68. }
  69.  
  70. /*对系数归一化处理,使每行的第一个系数是1.0*/
  71. SimplePivotalRow(i, i);
  72.  
  73. /*逐行进行消元*/
  74. for (int j = i + 1; j < m_DIM; j++)
  75. {
  76. RowElimination(i, j);
  77. }
  78. }
  79.  
  80. /*回代求解*/
  81. //对最后一个变量求解
  82. m_Matrix[(m_DIM - 1) * m_DIM + m_DIM - 1] = m_Value[m_DIM - 1] / m_Matrix[(m_DIM - 1) * m_DIM + m_DIM - 1];
  83. //对剩余变量求解
  84. for(int i = m_DIM - 2; i >= 0; i--)
  85. {
  86. double totalCof = 0.0;
  87. //将第i行对角线项之后的项相加
  88. for (int j = i + 1; j < m_DIM; j++)
  89. {
  90. totalCof += m_Matrix[i * m_DIM + j] * m_Matrix[j * m_DIM + j];
  91. }
  92. //求出对角线上变量的解
  93. m_Matrix[i * m_DIM + i] = (float)((m_Value[i] - totalCof) / m_Matrix[i * m_DIM + i]);
  94. }
  95.  
  96. /*将对角线元素的解逐个存入解向量*/
  97. float[] xValue = new float[m_DIM];
  98. for (int i = 0; i < m_DIM; i++)
  99. {
  100. xValue[i] = m_Matrix[i * m_DIM + i];
  101. }
  102. return xValue;
  103. }
  104.  
  105. // 判断主元是否为0
  106. private static bool IsPrecisionZero(int i)
  107. {
  108. return m_Matrix[i * m_DIM + i] == 0;
  109. }
  110.  
  111. /// <summary>
  112. /// 选择主元
  113. /// 在消元的过程中,如果某一行的对角线元素的值太小,
  114. /// 在计算过程中就会出现很大的数除以很小的数的情况,
  115. /// 有除法溢出的可能,因此在消元的过程中,通常都会增加
  116. /// 一个主元选择的步骤。
  117. /// 再通过行交换操作,将当前列绝对值最大的行交换到当前位置,
  118. /// 避免了除法溢出的问题,增加了算法的稳定性。
  119. /// </summary>
  120. /// <param name="i">第i行</param>
  121. /// <returns></returns>
  122. private static int SelectPivotalElement(int i)
  123. {
  124. int col = i;
  125. int pivotalRow = i;
  126. float max_val = 0;
  127. for (; i < m_DIM; i++)
  128. {
  129. float val = Math.Abs(m_Matrix[i * m_DIM + col]);
  130. if (val > max_val)
  131. {
  132. max_val = val;
  133. pivotalRow = i;
  134. }
  135. }
  136. return pivotalRow;
  137. }
  138.  
  139. // 交换行
  140. private static void SwapRow(int i, int pivotRow)
  141. {
  142. for (int j = 0; j < m_DIM; j++)
  143. {
  144. float tmp = m_Matrix[i * m_DIM + j];
  145. m_Matrix[i * m_DIM + j] = m_Matrix[pivotRow * m_DIM + j];
  146. m_Matrix[pivotRow * m_DIM + j] = tmp;
  147. }
  148.  
  149. float tmp_val = m_Value[i];
  150. m_Value[i] = m_Value[pivotRow];
  151. m_Value[pivotRow] = tmp_val;
  152. }
  153.  
  154. // 对系数归一化处理
  155. private static void SimplePivotalRow(int row, int col)
  156. {
  157. for (; row < m_DIM; row++)
  158. {
  159. float a = m_Matrix[row * m_DIM + col];
  160. for (int j = col; j < m_DIM; j++)
  161. {
  162. m_Matrix[row * m_DIM + j] /= a;
  163. }
  164. m_Value[row] /= a;
  165. }
  166. }
  167.  
  168. // 消元
  169. private static void RowElimination(int i, int j)
  170. {
  171. int i_start = i * m_DIM;
  172. int j_start = j * m_DIM;
  173.  
  174. //第j行与第i行各项相减
  175. for (int m = 0; m < m_DIM; m++)
  176. {
  177. m_Matrix[j_start + m] -= m_Matrix[i_start + m];
  178. }
  179. m_Value[j] -= m_Value[i];
  180. }
  181.  
  182. public static void Print()
  183. {
  184. for (int i = 0; i < m_DIM; i++)
  185. {
  186. for (int j = 0; j < m_DIM; j++)
  187. {
  188. Console.Write(m_Matrix[i * m_DIM + j] + ",");
  189. }
  190. Console.WriteLine();
  191. }
  192. }
  193. }
  194. }


测试

1111.png

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号