当前位置: 首页>>代码示例>>C#>>正文


C# FloatMatrix.SetColumn方法代码示例

本文整理汇总了C#中FloatMatrix.SetColumn方法的典型用法代码示例。如果您正苦于以下问题:C# FloatMatrix.SetColumn方法的具体用法?C# FloatMatrix.SetColumn怎么用?C# FloatMatrix.SetColumn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在FloatMatrix的用法示例。


在下文中一共展示了FloatMatrix.SetColumn方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Solve

    /// <summary>
    /// Solve a square Toeplitz system with a right-side matrix.
    /// </summary>
    /// <param name="Y">The right-side matrix</param>
    /// <returns>The solution matrix.</returns>
    /// <exception cref="ArgumentNullException">
    /// Parameter <B>Y</B> is a null reference.
    /// </exception>
    /// <exception cref="RankException">
    /// The number of rows in <B>Y</B> is not equal to the number of rows in the Toeplitz matrix.
    /// </exception>
    /// <exception cref="SingularMatrixException">
    /// The Toeplitz matrix or one of the the leading sub-matrices is singular.
    /// </exception>
    /// <remarks>
    /// This member solves the linear system <B>TX</B> = <B>Y</B>, where <B>T</B> is
    /// a square Toeplitz matrix, <B>X</B> is the unknown solution matrix
    /// and <B>Y</B> is a known matrix.
    /// <para>
    /// The class implicitly decomposes the inverse Toeplitz matrix into a <b>UDL</b> factorisation
    /// using the Levinson algorithm, before calculating the solution vector.
    /// </para>
    /// </remarks>
    public FloatMatrix Solve(IROFloatMatrix Y)
    {
      FloatMatrix X;
      float Inner;
      float[] a, b, x, y;
      int i, j, l;

      // check parameters
      if (Y == null)
      {
        throw new System.ArgumentNullException("Y");
      }
      else if (m_Order != Y.Columns)
      {
        throw new RankException("The numer of rows in Y is not equal to the number of rows in the Toeplitz matrix.");
      }

      Compute();

      if (m_IsSingular == true)
      {
        throw new SingularMatrixException("One of the leading sub-matrices is singular.");
      }

      // allocate memory for solution
      X = new FloatMatrix(m_Order, Y.Rows);
      x = new float[m_Order];

      for (l = 0; l < Y.Rows; l++)
      {

        // get right-side column
        y = FloatVector.GetColumnAsArray(Y,l);

        // solve left-side column
        for (i = 0; i < m_Order; i++)
        {
          a = m_LowerTriangle[i];
          b = m_UpperTriangle[i];

          Inner = y[i];
          for (j = 0; j < i; j++)
          {
            Inner += a[j] * y[j];
          }
          Inner *= m_Diagonal[i];
  
          x[i] = Inner;
          for (j = 0; j < i; j++)
          {
            x[j] += Inner * b[j];
          }
        }

        // insert left-side column into the matrix
        X.SetColumn(l, x);
      }

      return X;
    }
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:83,代码来源:FloatLevinson.cs

示例2: SetColumnArrayWrongRank

		public void SetColumnArrayWrongRank()
		{
			FloatMatrix a = new FloatMatrix(2, 2);
			float[] b = { 1, 2, 3 };
			a.SetColumn(1, b);
		}
开发者ID:Altaxo,项目名称:Altaxo,代码行数:6,代码来源:FloatMatrixTest.cs

示例3: SetColumnArrayOutOfRange

		public void SetColumnArrayOutOfRange()
		{
			FloatMatrix a = new FloatMatrix(2, 2);
			float[] b = { 1, 2 };
			a.SetColumn(2, b);
		}
开发者ID:Altaxo,项目名称:Altaxo,代码行数:6,代码来源:FloatMatrixTest.cs

示例4: SetColumnArray

		public void SetColumnArray()
		{
			FloatMatrix a = new FloatMatrix(2, 2);
			float[] b = { 1, 2 };
			a.SetColumn(0, b);
			Assert.AreEqual(b[0], a[0, 0]);
			Assert.AreEqual(b[1], a[1, 0]);
		}
开发者ID:Altaxo,项目名称:Altaxo,代码行数:8,代码来源:FloatMatrixTest.cs

示例5: SetColumnWrongRank

		public void SetColumnWrongRank()
		{
			FloatMatrix a = new FloatMatrix(2, 2);
			FloatVector b = new FloatVector(3);
			a.SetColumn(1, b);
		}
开发者ID:Altaxo,项目名称:Altaxo,代码行数:6,代码来源:FloatMatrixTest.cs

示例6: SetColumnOutOfRange

		public void SetColumnOutOfRange()
		{
			FloatMatrix a = new FloatMatrix(2, 2);
			FloatVector b = new FloatVector(2);
			a.SetColumn(2, b);
		}
开发者ID:Altaxo,项目名称:Altaxo,代码行数:6,代码来源:FloatMatrixTest.cs

示例7: SetColumn

		public void SetColumn()
		{
			FloatMatrix a = new FloatMatrix(2, 2);
			FloatVector b = new FloatVector(2);
			b[0] = 1;
			b[1] = 2;
			a.SetColumn(0, b);
			Assert.AreEqual(b[0], a[0, 0]);
			Assert.AreEqual(b[1], a[1, 0]);
		}
开发者ID:Altaxo,项目名称:Altaxo,代码行数:10,代码来源:FloatMatrixTest.cs


注:本文中的FloatMatrix.SetColumn方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。