⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test_code8.cpp

📁 This is an matrix class which has been adapted for complex number computations. It ll be of help for
💻 CPP
字号:
#include <iostream>
#include <stdlib.h>
#include "matrix6.h"
//#include "complex.h"
#define  my_size 4




//////////////////////////////////Copy matrix class////////////////////////////////




//////////////////////////////END of Matrix Class/////////////////////////////////


using namespace std;
using namespace soubam;

int main(int argc, char *argv[])
{
try
{

 //// complex< double >    temp(3,4); 
 //// RMatrix< int >       R1( 4, 3, 1),  R2(3, 5, 2);
 //// RMatrix< double >    R3( 4, 4 ),    R4(4, 3, 0.1);
 //// CMatrix< double >    C1( 4, 3,1),   C2(3, 5, 2);
 //// CMatrix< double >    C3( 5, 6, 2.3),C4(6, 7, 0.3);
  Matrix < complex<double> >    Cx(my_size, my_size),Cx_inv(my_size, my_size) ,ident(my_size, my_size) ; 
  //盢matrix 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -