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.
我是 mathnet 的新手,我想知道如何在 C# 中设置矩阵的某些部分。
例如,我编辑的是矩阵,我想运行这个将这个命令从 matlab 转换为 c#。我怎么能做到这一点?
ed(10*ed<100)=50;
你可以这样尝试:
ed.MapInplace(x => 10 * x < 100 ? 50 : x, Zeros.Include);
Math.NET 矩阵的文档可以在以下位置找到: 矩阵和向量