00001 #include<complex> 00002 #include<iostream> 00003 #include"blas_wrapper.h" 00004 00005 using namespace std; 00006 00007 int main() 00008 { 00009 complex<double> pippo[2]; 00010 00011 pippo[0]=dcmplx(24,3); 00012 pippo[1]=dcmplx(4,3); 00013 cout << pippo[0] << endl; 00014 int i=1,b=2; 00015 cout << " norma " << F77_FUNC(dznrm2,DZNRM2)(&i,(double*)pippo,&b) << endl; 00016 } 00017