gpt4 book ai didi

c++ - 当矩阵对象的维度为 1x1 时,如何使它隐式转换为标量?

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:52:13 24 4
gpt4 key购买 nike

我写了一个Matrix 类。它在矩阵之间进行乘法运算。有时矩阵相乘会产生 1x1 矩阵(例如,两个列 vector 的内积)。是否可以让Matrix对象在一对一时直接返回一个标量值?

template <class T> class Matrix
{
public:
// ...
T& operator()(uint64_t unRow, uint64_t unCol = 0) throw(MatrixOutOfRange);
const T& operator()(uint64_t unRow, uint64_t unCol = 0) const throw(MatrixOutOfRange);
// ...
protected:
std::vector<T> MatrixArray;
// ...
};

// ...

template <class T>
T & Matrix<T>::operator()(uint64_t unRow, uint64_t unCol /*= 0*/) throw(MatrixOutOfRange)
{
/* Bound checking here */
return MatrixArray[m_unColSize * unRow + unCol];
}

template <class T>
const T & Matrix<T>::operator()(uint64_t unRow, uint64_t unCol /*= 0*/) const throw(MatrixOutOfRange)
{
/* Bound checking here */
return MatrixArray[m_unColSize * unRow + unCol];
}

// ...

示例代码:

Latex image

Matrix<double> A (3, 1,    1.0, 2.0, 3.0);
Matrix<double> AT(1, 3, 1.0, 2.0, 3.0); // Transpose of the A matrix
Matrix<double> B (3, 1, 4.0, 5.0, 6.0);
Matrix<double> C();

C = AT * B;
double Result1 = C(0, 0);
double Result2 = (AT * B)(0, 0);
double Result3 = A.InnerProductWith(B)(0, 0);

当结果是一对一矩阵时,我想删除不必要的元素位置说明符参数 (0, 0)。像这样:

C = AT * B;
double Result1 = C;
double Result2 = AT * B;
double Result3 = A.InnerProductWith(B);

如果结果不是一对一,抛出异常也可以。

最佳答案

是的。

这与 std::vector::at() 的工作方式类似,这也是一个编译时调用,除非满足某些运行时条件,否则它将始终抛出。

类型为 T 的转换运算符如下所示:

template <class T> class Matrix
{
    public:
        // ...
operator T &() {
// Throw here if size is not 1x1...

return (*this)( 0, 0 );
}

operator T const &() const {
// Throw here if size is not 1x1...

return (*this)( 0, 0 );
}
        // ...
};

您的所有示例代码都可以按照编写的方式运行。

关于c++ - 当矩阵对象的维度为 1x1 时,如何使它隐式转换为标量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14490288/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com