Consider this example:
X = 0:0.01:1;
Y = 0:0.01:1;
[x,y] = meshgrid(X,Y);
z = sin(x.*y);
contourf(x,y,z,'ShowText','on')
The contour's values are determined automatically. How can I plot specifi contour lines with specific values like [0.1,0.3,0.44,0.63,0.78,0.89]?