view +grid/old/triang_interp_pts.m @ 45:b6cfc04e576c

Changed spdiag to be more like matlabs diag.
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 05 Nov 2015 16:28:35 -0800
parents 48b6fb693025
children
line wrap: on
line source

% Creates a transfinite interpolation from connecting the four points wiht straight lines.
function [S, g1, g2, g3] = triang_interp_pts(p1,p2,p3)
    if size(p1) ~= [2 1]
        error('p1 is strange!');
    end

    g1 = @(t)(p1 + t*(p2-p1));
    g2 = @(t)(p2 + t*(p3-p2));
    g3 = @(t)(p3 + t*(p1-p3));

    S = grid.triang_interp(g1,g2,g3);
end