本征矩阵库逐系数取模运算 [英] Eigen matrix library coefficient-wise modulo operation

查看:101
本文介绍了本征矩阵库逐系数取模运算的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我正在研究的项目中的一个功能中,我需要找到特征库矩阵除以给定数字后每个元素的其余部分。这是等效于我想做的Matlab:

In one of the functions in the project I am working on, I need to find the remainder of each element of my eigen library matrix when divided by a given number. Here is the Matlab equivalent to what I want to do:

mod(X,num)

其中X是股利矩阵,num是除数。

where X is the dividend matrix and num is the divisor.

什么是

推荐答案

您可以将C ++ 11 lambda与 unaryExpr

You can use a C++11 lambda with unaryExpr:

MatrixXi A(4,4), B;
A.setRandom();
B = A.unaryExpr([](const int x) { return x%2; });

或:

int l = 2;
B = A.unaryExpr([&](const int x) { return x%l; });

这篇关于本征矩阵库逐系数取模运算的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆