Home > . > lptauSEQ.m

lptauSEQ

PURPOSE ^

[lpmat] = lptauSEQ(Nsam,Nvar)

SYNOPSIS ^

function [lpmat] = lptauSEQ(Nsam,Nvar)

DESCRIPTION ^

 [lpmat] = lptauSEQ(Nsam,Nvar)

 function call LPTAU and generates a sample of dimension Nsam for a
 number of parameters Nvar

 Copyright (C) 2005 Marco Ratto
 THIS PROGRAM WAS WRITTEN FOR MATLAB BY
 Marco Ratto,
 Unit of Econometrics and Statistics AF
 (http://www.jrc.cec.eu.int/uasa/),
 IPSC, Joint Research Centre
 The European Commission,
 TP 361, 21020 ISPRA(VA), ITALY
 marco.ratto@jrc.it

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [lpmat] = lptauSEQ(Nsam,Nvar)
0002 
0003 % [lpmat] = lptauSEQ(Nsam,Nvar)
0004 %
0005 % function call LPTAU and generates a sample of dimension Nsam for a
0006 % number of parameters Nvar
0007 %
0008 % Copyright (C) 2005 Marco Ratto
0009 % THIS PROGRAM WAS WRITTEN FOR MATLAB BY
0010 % Marco Ratto,
0011 % Unit of Econometrics and Statistics AF
0012 % (http://www.jrc.cec.eu.int/uasa/),
0013 % IPSC, Joint Research Centre
0014 % The European Commission,
0015 % TP 361, 21020 ISPRA(VA), ITALY
0016 % marco.ratto@jrc.it
0017 %
0018 
0019 
0020 clear lptau
0021 lpmat = zeros(Nsam, Nvar);
0022 for j=1:Nsam,
0023     lpmat(j,:)=LPTAU(j,Nvar);
0024 end
0025 return

Generated on Fri 16-Jun-2006 09:09:06 by m2html © 2003