MATLAB: Button to clear an axes and a table content – App Desginer

app designerMATLAB

I use in App designer buttom a that aims to clear an axes and a table content. I used
app.myTable.cla;
app.myImageAxes.cla;
and I get this error:
Unrecognized method, property, or field 'cla' for class 'matlab.ui.control.Table'.
How can I fix it?

Best Answer

app.myTable.Data = [];
Related Question