function [A,xy] = gridt(k) % GRIDT : Generate triangular mesh. % % [A,xy] = GRIDT(k) returns a k*(k+1)/2-square symmetric positive % definite matrix A with the structure of an equilateral triangular % mesh with side k, and an array xy of coordinates of the mesh points. % Start with a square 7-point grid. [A,xy] = grid7(k); % Mask off one triangle of it. xy = xy-1; f = find(xy(:,1)+xy(:,2)