source: issm/trunk/src/m/classes/@singelem/display.m@ 1

Last change on this file since 1 was 1, checked in by Eric.Larour, 16 years ago

Initial import

File size: 445 bytes
Line 
1function display(singelem)
2%DISPLAY - displays the fields of a sing element
3%
4% echo function for 'singelem' class
5
6disp(sprintf('\n%s = \n',inputname(1)));
7disp(sprintf(' type: %s',singelem.type));
8disp(sprintf(' id: %i',singelem.id));
9disp(sprintf(' material id: %i',singelem.matid));
10disp(sprintf(' grid ids: %i %i',singelem.g(1)));
11disp(sprintf(' thickness: %g %g',singelem.h(1)));
12disp(sprintf(' drag coeff: %g',singelem.k));
Note: See TracBrowser for help on using the repository browser.