]> Creatis software - CreaPhase.git/blob - octave_packages/econometrics-1.0.8/prettyprint.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / econometrics-1.0.8 / prettyprint.m
1 # Copyright (C) 2003,2004  Michael Creel <michael.creel@uab.es>
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
7
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12
13 # You should have received a copy of the GNU General Public License
14 # along with this program; If not, see <http://www.gnu.org/licenses/>.
15
16 ## this prints matrices with row and column labels
17 function prettyprint(mat, rlabels, clabels)
18
19         # left pad the column labels 
20         a = columns(rlabels);
21         for i = 1:a
22                 printf(" ");
23         endfor
24         printf("  ");
25
26         # print the column labels
27         clabels = ["          ";clabels]; # pad to 8 characters wide
28         clabels = strjust(clabels,"right");
29
30         k = columns(mat);
31         for i = 1:k
32                 printf("%s  ",clabels(i+1,:));
33         endfor
34
35         # now print the row labels and rows
36         printf("\n");
37         k = rows(mat);
38         for i = 1:k
39                 if ischar(rlabels(i,:))
40                         printf(rlabels(i,:));
41                 else
42                         printf("%i", rlabels(i,:));
43                 endif
44                 printf("  %10.3f", mat(i,:));
45                 printf("\n");
46         endfor
47 endfunction