版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!

仓库源文站点原文


title: 模板 - [已弃用] 基于 std::valarray 实现的矩阵 categories:


基于 C++17 标准, 实现了矩阵的运算, 求逆, 转置, 秩, 行列式, Gauss 消元, 支持流式 IO

{% note warning %} 仅在 GCC 下测试过 {% endnote %}

<!-- more -->

使用说明

成员函数&友元函数列表

{% icodeweb blog lang:cpp matrix-valarray/Matrix.h %}

代码

<details open> <summary><font color='orange'>Show code</font></summary> {% icodeweb blog lang:cpp matrix-valarray/Matrix.hpp %} </details>

示例

<details open> <summary><font color='orange'>Show code</font></summary> {% icodeweb blog lang:cpp matrix-valarray/Matrix_exp.cpp %} </details>