Hi, If I put the following in notebook, I don't get what is expected, i.e. a function called linearequations -
fortran.libraries = ['lapack', 'blas'] code = '''!f90 Subroutine LinearEquations(A,b,n) Integer n Real*8 A(n,n), b(n) Integer i, j, pivot(n), ok call DGESV(n, 1, A, n, pivot, b, n, ok) end ''' fortran(code) Although apart from showing some warning it does generate a .so file. I am using Sage 4.6.2 compiled from source on Debian squeeze. Can someone suggest how to get it working? Rajeev -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org