ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/rmatrix.h
(Generate patch)

Comparing ray/src/util/rmatrix.h (file contents):
Revision 2.2 by greg, Sat May 31 19:21:21 2014 UTC vs.
Revision 2.11 by greg, Tue Sep 3 23:43:07 2019 UTC

# Line 14 | Line 14 | extern "C" {
14  
15   /* General plane-ordered component matrix */
16   typedef struct {
17 <        int     nrows, ncols, ncomp;
17 >        int     nrows, ncols;
18 >        short   ncomp;
19 >        uby8    dtype;
20 >        uby8    swapin;
21 >        char    *info;
22          double  mtx[1];                 /* extends struct */
23   } RMATRIX;
24  
25 < #define rmx_lval(rm,r,c,i)      (rm)->mtx[((i)*(rm)->nrows+(r))*(rm)->ncols+(c)]
25 > #define rmx_lval(rm,r,c,i)      (rm)->mtx[(i)+(rm)->ncomp*((c)+(size_t)(rm)->ncols*(r))]
26  
23 #define rmx_free(rm)            free(rm)
24
27   /* Allocate a nr x nc matrix with n components */
28   extern RMATRIX  *rmx_alloc(int nr, int nc, int n);
29  
30 < /* Load matrix from supported file type */
31 < extern RMATRIX  *rmx_load(const char *fname);
30 > /* Free a RMATRIX array */
31 > extern void     rmx_free(RMATRIX *rm);
32  
33 < /* Write matrix to file type indicated by dt */
34 < extern long     rmx_write(const RMATRIX *rm, int dtype, FILE *fp);
33 > /* Resolve data type based on two input types (returns 0 for mismatch) */
34 > extern int      rmx_newtype(int dtyp1, int dtyp2);
35  
36 + /* Load matrix from supported file type (NULL for stdin, '!' with command) */
37 + extern RMATRIX  *rmx_load(const char *inspec);
38 +
39 + /* Append header information associated with matrix data */
40 + extern int      rmx_addinfo(RMATRIX *rm, const char *info);
41 +
42 + /* Write matrix to file type indicated by dtype */
43 + extern int      rmx_write(const RMATRIX *rm, int dtype, FILE *fp);
44 +
45   /* Allocate and assign square identity matrix with n components */
46   extern RMATRIX  *rmx_identity(int dim, int n);
47  
# Line 42 | Line 53 | extern RMATRIX *rmx_transpose(const RMATRIX *rm);
53  
54   /* Multiply (concatenate) two matrices and allocate the result */
55   extern RMATRIX  *rmx_multiply(const RMATRIX *m1, const RMATRIX *m2);
56 +
57 + /* Element-wise multiplication (or division) of m2 into m1 */
58 + extern int      rmx_elemult(RMATRIX *m1, const RMATRIX *m2, int divide);
59  
60   /* Sum second matrix into first, applying scale factor beforehand */
61   extern int      rmx_sum(RMATRIX *msum, const RMATRIX *madd, const double sf[]);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines