#include <Eigen/Sparse>
#include <vector>
#include <QImage>
void insertCoefficient(
int id,
int i,
int j,
double w, std::vector<T>& coeffs,
Eigen::VectorXd& b,
int n = int(boundary.
size());
int id1 = i + j * n;
if (i == -1 || i == n)
b(id) -= w * boundary(j);
else if (j == -1 || j == n)
b(id) -= w * boundary(i);
else
coeffs.push_back(T(id, id1, w));
}
void buildProblem(std::vector<T>& coefficients,
Eigen::VectorXd& b,
int n) {
for (int j = 0; j < n; ++j) {
for (int i = 0; i < n; ++i) {
int id = i + j * n;
insertCoefficient(id, i - 1, j, -1, coefficients, b, boundary);
insertCoefficient(id, i + 1, j, -1, coefficients, b, boundary);
insertCoefficient(id, i, j - 1, -1, coefficients, b, boundary);
insertCoefficient(id, i, j + 1, -1, coefficients, b, boundary);
insertCoefficient(id, i, j, 4, coefficients, b, boundary);
}
}
}
QImage img(bits.
data(), n, n, QImage::Format_Indexed8);
img.setColorCount(256);
for (int i = 0; i < 256; i++) img.setColor(i, qRgb(i, i, i));
img.save(filename);
}
General-purpose arrays with easy API for coefficient-wise operations.
Definition Array.h:48
static EIGEN_DEPRECATED const RandomAccessLinSpacedReturnType LinSpaced(Sequential_t, Index size, const Scalar &low, const Scalar &high)
Definition CwiseNullaryOp.h:236
EIGEN_CONSTEXPR Index size() const EIGEN_NOEXCEPT
Definition EigenBase.h:64
const MatrixFunctionReturnValue< Derived > sin() const
This function requires the <a * href="unsupported/group__MatrixFunctions__Module.html"> unsupported M...
The matrix class, also used for vectors and row-vectors.
Definition Matrix.h:186
Derived & setZero(Index size)
Definition CwiseNullaryOp.h:563
const Scalar * data() const
Definition PlainObjectBase.h:273
A versatible sparse matrix representation.
Definition SparseUtil.h:47
A small structure to hold a non zero as a triplet (i,j,value).
Definition SparseUtil.h:187