8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Linqで快適な生活を 其の2

Posted at

Linqには、二つの配列の中身を走査して、操作するZip関数があります。これをAggregate関数と合わせると、リスト内のdouble配列の中身をindex別に足し合わせることが簡単にできます。

var doubleArrayList = new List<double[]>() { 
new double[3] { 1, 2, 3 },
new double[3] { 1, 1, 1 },
new double[3] { 10, 31, 41 } 
};

var zippedList = doubleArrayList.Aggregate((total, calculatingArray) => total.Zip(calculatingArray, (valOfTotal, valOfCalc) => valOfTotal + valOfCalc).ToArray());

zippedListは double[3] {12, 34, 45} となります。 AggregateとZipのコンビネーションは他にも色々とできそうですね!

快適、快適。

8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?