-- FreeFem++ v4.14 (mer. 06 mars 2024 16:59:04 CET - git v4.14-1-g2b2052ae) file : lapack_test.edp Load: lg_fem lg_mesh lg_mesh3 eigenvalue 1 : // lapack_test.edp 2 : // 3 : // Licensing: 4 : // 5 : // This code is distributed under the MIT license. 6 : // 7 : // Modified: 8 : // 9 : // 12 November 2020 10 : // 11 : cout << "\n"; 12 : cout << "lapack_test()\n"; 13 : cout << " FreeFem++ version.\n"; 14 : cout << " Test the use of lapack functions.\n"; 15 : 16 : load "lapack" Add lapack interface ... 17 : { 18 : int n=5; 19 : real[int,int] A(n,n); 20 : real[int,int] A1(n,n); 21 : real[int,int] B(n,n); 22 : 23 : for(int i=0;i