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


C# ComplexFloatMatrix.GetTranspose方法代码示例

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


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

示例1: GetTransposeSquare

 public void GetTransposeSquare()
 {
   ComplexFloatMatrix a = new ComplexFloatMatrix(2,2);
   a[0,0] = new ComplexFloat(1);
   a[0,1] = new ComplexFloat(2);
   a[1,0] = new ComplexFloat(3);
   a[1,1] = new ComplexFloat(4);
   ComplexFloatMatrix b = a.GetTranspose();
   Assert.AreEqual(b[0,0], a[0,0]);
   Assert.AreEqual(b[0,1], a[1,0]);
   Assert.AreEqual(b[1,0], a[0,1]);
   Assert.AreEqual(b[1,1], a[1,1]);
 }
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:13,代码来源:ComplexFloatMatrixTest.cs

示例2: GetTransposeLong

 public void GetTransposeLong()
 {
   ComplexFloatMatrix a = new ComplexFloatMatrix(3,2);
   a[0,0] = new ComplexFloat(1);
   a[0,1] = new ComplexFloat(2);
   a[1,0] = new ComplexFloat(3);
   a[1,1] = new ComplexFloat(4);
   a[2,0] = new ComplexFloat(5);
   a[2,1] = new ComplexFloat(6);
   ComplexFloatMatrix b = a.GetTranspose();
   Assert.AreEqual(b[0,0], a[0,0]);
   Assert.AreEqual(b[0,1], a[1,0]);
   Assert.AreEqual(b[0,2], a[2,0]);
   Assert.AreEqual(b[1,0], a[0,1]);
   Assert.AreEqual(b[1,1], a[1,1]);
   Assert.AreEqual(b[1,2], a[2,1]);
   Assert.AreEqual(b.RowLength, a.ColumnLength);
   Assert.AreEqual(b.ColumnLength, a.RowLength);
 }
开发者ID:xuchuansheng,项目名称:GenXSource,代码行数:19,代码来源:ComplexFloatMatrixTest.cs

示例3: GetMatrix

		/// <summary>
		/// Get a copy of the Toeplitz matrix.
		/// </summary>
		/// <returns>
		/// The Toeplitz matrix
		/// </returns>
		public ComplexFloatMatrix GetMatrix()
		{
			int i;

			// allocate memory for the matrix
			ComplexFloatMatrix tm = new ComplexFloatMatrix(m_Order);
#if MANAGED
			// fill lower triangle
			for (i = 0; i < m_Order; i++)
			{
				Array.Copy(m_LeftColumn.data, 0, tm.data[i], i, m_Order - i);
			}

			tm = tm.GetTranspose();

			// fill upper triangle
			for (i = 0; i < m_Order - 1; i++)
			{
				Array.Copy(m_TopRow.data, 1, tm.data[i], i + 1, m_Order - i - 1);
			}
#else
      int j, k;

      // fill lower triangle
      for (i = 0; i < m_Order; i++)
      {
        for (j = i, k = 0; j < m_Order; j++, k++)
        {
          tm[j, i] = m_LeftColumn[k];
        }
      }
      // fill upper triangle
      for (i = 0; i < m_Order; i++)
      {
        for (j = i + 1, k = 1; j < m_Order; j++, k++)
        {
          tm[i, j] = m_TopRow[k];
        }
      }
#endif
			return tm;
		}
开发者ID:Altaxo,项目名称:Altaxo,代码行数:48,代码来源:ComplexFloatLevinson.cs


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