加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
MatrixTest.cpp 314 Bytes
一键复制 编辑 原始数据 按行查看 历史
yingquelou 提交于 2024-01-14 21:49 . 整理
#include <iostream>
#include <iomanip>
#include <complex>
#include "Matrix.hpp"
int main(int argc, char* argv[])
{
// std::ofstream os("aaa.txt");
auto& os = std::cout;
int arr[][3] = { {246, 427, 327},
{1014, 543, 443},
{-342, 721, 621} };
Determinant<float> m(arr);
os << m.value();
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化