Documentation of printtau


Global Index (short | long) | Local contents | Local Index (short | long)


Function Synopsis

printtau(tau,fname);

Help text


  printtau(tau,fname);

  Where tau is the file to be printed, fname is the file name.


Listing of function printtau

function printtau(tau,fname);
[m,n]=size(tau);
form=[];
for i=1:(n-1)
  form=[form '%8.4f '];
end
form=[form '%8.4f \n']

fid=fopen(fname,'w')
fprintf(fid,form,tau')
fclose(fid)