Hello, I am working with BLAS and LAPACK in C (using gcc in cygwin) and I have had no problems until now. Since my data types are all doubles, I used the double percision BLAS functions, such as cblas_dsymv (the d for double percision) instead of cblas_ssymv (the s for single percision).
However, right now I'm dealing with very large numbers and as a result I have to use long doubles instead of just double. Unfortunately, it appears that there is no long double equivalent for BLAS.
Is there anyway around this?
Thanks

