Is there any similar thing like SQL Server's UDF (where a function can be exported in a DLL and imported as a function in SQL Server) in Postgres?
For example the function I want to import has the following signature:
public static extern double* svd(double[] a, int d);
the Dll import looks like this:
[DllImport("D:\\my.dll", EntryPoint = "mydll")]