| 210 raise ValueError('Channel info are different. Data can not be combined.') |
210 raise ValueError('Channel info are different. Data can not be combined.') |
| 211 |
211 |
| 212 self.data = np.vstack([self.data, other.data]) |
212 self.data = np.vstack([self.data, other.data]) |
| 213 |
213 |
| 214 def __unicode__(self): |
214 def __unicode__(self): |
| 215 return "<Licel channel: %s>" % self.info['Wavelength'] |
215 return "<Licel channel: %s>" % self.name |
| 216 |
216 |
| 217 def __str__(self): |
217 def __str__(self): |
| 218 return unicode(self).encode('utf-8') |
218 return unicode(self).encode('utf-8') |
| 219 |
219 |
| 220 |
220 |