填充一组复数错误

时间:2015-01-27 22:12:19

标签: c# complex-numbers

我有两个数组。一个包含"真实"值和另一个包含"想象的"值。这两个数组需要组合成一个复数数组。我尝试了以下方法:

Complex[] complexArray = new Complex[16384];

for (int i = 0; i <16384; i++)
(
    complexArray[i].Real = realArray[i];
    complexArray[i].Imaginary = imaginaryArray[i];
}

它不起作用。它给出了错误:Property或indexer&#39; System.Numerics.Complex.Real&#39;无法分配 - 它是只读的 我知道复数是不可变的,但是如何创建这样的数组?

更重要的是,一旦我拥有这个数组,我想在其中移动值。

1 个答案:

答案 0 :(得分:4)

只需使用Complex的构造函数:

Complex[] complexArray = new Complex[16384];
for (int i = 0; i < complexArray.Length; i++)
(
    complexArray[i] = new Complex(realArray[i], imaginaryArray[i]);
}

或者,您可以使用LINQ:

来减少代码量(轻微的性能成本)
var complexArray = realArray.Zip(imaginaryArray, (a, b) => new Complex(a, b)).ToArray();

要移动数组中的值,请执行与值intdouble相同的操作:

int i = 5;
int j = 7;
// Swap positions i and j
var temp = complex[i];
complex[i] = complex[j];
complex[j] = temp;