| CS 1371 Dept. Presents: |
| DISPLAY METHOD | |
|---|---|
| Definition | The method called whenever Matlab wants to display the contents of an object |
| Example |
function
display(ba)
disp(char(ba));
This function is a display for the BankAccount class. It displays a string representation of the account as defined in the char method. |