[GIS] How to make a minimal distance matrix for polygons using QGIS

distancepolygonqgis

I have a set of polygons and I want to find minimal distances between the edge of each pair of them. It's similar task as in this question:

Finding minimum edge to edge distance of polygons using ArcGIS Desktop?

But I'd prefer to make it in QGIS or other free available program. Also I'm very beginner in using geographic information systems software so I'd be really grateful if you make your answer as simple as possible.

Best Answer

The ST_Distance function in the link you referenced works the same in spatialite. YOu can import your polygons into spatialite and calculate min distances there.