中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

如何實現C++中的矩陣類

c++
小樊
89
2024-08-29 22:23:36
欄目: 編程語言

在 C++ 中,要實現一個矩陣類,你需要定義一個類,該類包含矩陣的數據(通常是一個二維向量)和相關的操作(如加法、乘法等)

#include<iostream>
#include<vector>

class Matrix {
public:
    // 構造函數
    Matrix(int rows, int cols) : _rows(rows), _cols(cols), _data(rows, std::vector<double>(cols, 0.0)) {}

    // 獲取行數
    int getRows() const {
        return _rows;
    }

    // 獲取列數
    int getCols() const {
        return _cols;
    }

    // 獲取矩陣元素
    double getElement(int row, int col) const {
        return _data[row][col];
    }

    // 設置矩陣元素
    void setElement(int row, int col, double value) {
        _data[row][col] = value;
    }

    // 矩陣加法
    Matrix operator+(const Matrix& other) const {
        if (_rows != other._rows || _cols != other._cols) {
            throw std::invalid_argument("Matrix dimensions do not match for addition.");
        }

        Matrix result(_rows, _cols);
        for (int i = 0; i < _rows; ++i) {
            for (int j = 0; j < _cols; ++j) {
                result._data[i][j] = _data[i][j] + other._data[i][j];
            }
        }
        return result;
    }

    // 矩陣乘法
    Matrix operator*(const Matrix& other) const {
        if (_cols != other._rows) {
            throw std::invalid_argument("Matrix dimensions do not match for multiplication.");
        }

        Matrix result(_rows, other._cols);
        for (int i = 0; i < _rows; ++i) {
            for (int j = 0; j< other._cols; ++j) {
                for (int k = 0; k < _cols; ++k) {
                    result._data[i][j] += _data[i][k] * other._data[k][j];
                }
            }
        }
        return result;
    }

private:
    int _rows;
    int _cols;
    std::vector<std::vector<double>> _data;
};

int main() {
    // 創建兩個矩陣并執行加法和乘法操作
    Matrix A(2, 2);
    A.setElement(0, 0, 1);
    A.setElement(0, 1, 2);
    A.setElement(1, 0, 3);
    A.setElement(1, 1, 4);

    Matrix B(2, 2);
    B.setElement(0, 0, 5);
    B.setElement(0, 1, 6);
    B.setElement(1, 0, 7);
    B.setElement(1, 1, 8);

    Matrix C = A + B;
    Matrix D = A * B;

    // 輸出結果
    std::cout << "A + B = "<< std::endl;
    for (int i = 0; i < C.getRows(); ++i) {
        for (int j = 0; j < C.getCols(); ++j) {
            std::cout << C.getElement(i, j) << " ";
        }
        std::cout<< std::endl;
    }

    std::cout << "A * B = "<< std::endl;
    for (int i = 0; i < D.getRows(); ++i) {
        for (int j = 0; j < D.getCols(); ++j) {
            std::cout << D.getElement(i, j) << " ";
        }
        std::cout<< std::endl;
    }

    return 0;
}

這個示例展示了如何創建一個簡單的矩陣類,包括構造函數、獲取行數/列數、獲取/設置矩陣元素以及矩陣加法和乘法操作。你可以根據需要擴展此類,添加更多功能。

0
兴业县| 平安县| 通许县| 九江市| 彭水| 玉溪市| 祁东县| 调兵山市| 拜城县| 珠海市| 杨浦区| 延川县| 正镶白旗| 万州区| 称多县| 天镇县| 县级市| 香河县| 沁源县| 垦利县| 嫩江县| 资讯| 河西区| 和林格尔县| 岳普湖县| 清苑县| 清水县| 贞丰县| 镇巴县| 丰顺县| 灌南县| 柞水县| 怀集县| 阜宁县| 汉沽区| 博湖县| 道孚县| 东港市| 什邡市| 肇东市| 凤山县|