MATLAB: How to plot 2D mesh using coordinates and connectivity matrix

2d meshMATLABplot mesh

I have coordinates of nodes and connectivity matrix as follows
coordinate = [0 0
0 0.2000
0 0.4000
0 0.6000
0 0.8000
0 1.0000
1.0000 1.0000];
connectivity matrix = [1 2 7 6
2 3 8 7
………];
how to plot with coordinat and connectivity matrix?