How do I add two numeric arrays in F#
问题 I am totally new to F#. I have searched high and low but I cannot find an example for what I want. let A = [| 1.0, 2.0, 3.0, 4.0 |];; //maybe delimiter with ; let B = [| 4.0, 3.5, 2.5, 0.5 |];; let C = A + B;; //how do I define the addition operator for arrays? // expect C=[| 5.0, 5.5, 5.5, 4.5 |] I have come close with this posting, but it is not what I want. 回答1: let inline (++) a b = Array.map2 (+) a b let A = [| 1.0; 2.0; 3.0; 4.0 |];; let B = [| 4.0; 3.5; 2.5; 0.5 |];; let A1 = [| 1; 2;