comparison src/pt-mat.h @ 2529:90fa35bd0216

[project @ 1996-11-19 18:02:22 by jwe]
author jwe
date Tue, 19 Nov 1996 18:02:22 +0000
parents 977f7dd0999c
children 8b262e771614
comparison
equal deleted inserted replaced
2528:704d7e130e71 2529:90fa35bd0216
52 append (e); 52 append (e);
53 } 53 }
54 54
55 ~tree_matrix_row (void) { } 55 ~tree_matrix_row (void) { }
56 56
57 bool is_matrix_constant (void) const; 57 bool all_elements_are_constant (void) const;
58 58
59 tree_return_list *to_return_list (void); 59 tree_return_list *to_return_list (void);
60 60
61 void accept (tree_walker& tw); 61 void accept (tree_walker& tw);
62 }; 62 };
73 append (mr); 73 append (mr);
74 } 74 }
75 75
76 ~tree_matrix (void) { } 76 ~tree_matrix (void) { }
77 77
78 bool is_matrix_constant (void) const; 78 bool all_elements_are_constant (void) const;
79 79
80 octave_value eval (bool print); 80 octave_value eval (bool print);
81 81
82 void accept (tree_walker& tw); 82 void accept (tree_walker& tw);
83 }; 83 };