function fp = triangle_integrand_01 ( p_num, p, f_num ) %*****************************************************************************80 % %% TRIANGLE_INTEGRAND_01 evaluates 1 integrand function. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 15 August 2009 % % Author: % % John Burkardt % % Parameters: % % Input, integer P_NUM, the number of points. % % Input, real P(2,P_NUM), the evaluation points. % % Input, integer F_NUM, the number of integrands. % % Output, real FP(F_NUM,P_NUM), the integrand values. % fp(1,1:p_num) = 1.0; return end