MATLAB: overriding table() methods
问题 SETUP Win7 64b, R2015b, 16 GB of RAM, CPU i7-2700 The table() is a fundamental Matlab class which is also sealed , hence I cannot subclass it. I want to fix some methods of this class and add new ones. For instance, table.disp() is fundamentally broken, e.g. try NOT disp(table(rand(1e7,1))) , or forget the ; in the command window. The variable takes only 76 MB in RAM but the display is unbuffered and it will stall your system! Can I override methods like table.disp() without writing into