Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Matrix 函数 MapIndexInplace 被记录为采用 Func(int、int、float、float)。我不明白第二个浮点值是什么。谁能解释一下?
Func<int,int,float,float>委托代表一个函数,它有两个整数,一个浮点数作为参数,一个浮点数作为返回值。所以第二个浮点数代表函数的返回值。
Func<int,int,float,float>
MapIndexInplace将为具有三个参数(索引 i、索引 j、当前值 v)的每个(或可选地每个非零)矩阵元素调用此类型签名的提供函数,并将矩阵元素值替换为被调用函数返回的值。
MapIndexInplace