Download this file
29 lines (23 with data), 604 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28 | //=============================================================================
#include <iostream>
#include <cstdlib>
#include <ctime>
#include "cpplapack.h"
using namespace std;
#include "zhesv_check.hpp"
#include "zheev_check.hpp"
//#include "zhegv_check.hpp"
//=============================================================================
/*! main */
int main(int argc, char** argv)
{
zhesv_check_vector();
zhesv_check_matrix();
zheev_check_value();
zheev_check_right();
zheev_check_left();
//zhegv_check_value();
//zhegv_check_right();
//zhegv_check_left();
return 0;
}
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.