Hi Marcel,
I understand that you are looking for a method to add rows to a "UITable" in App Designer.
You can achieve this by using the "startupFcn" callback.
To add the "startupFcn" callback, follow these steps:
- Go to "Code View" in App Designer.
- In the "Editor" tab, click on the "+" sign in "Callbacks" column.
- From the dropdown in "Callback" select " StartupFcn" from the list. This will add a "startupFcn" callback to your code.
In the "startupFcn", add the following line of code:
% create your matrxi data and add in the UITable using below code.
app.UITable.Data = [matrix data];
This code initializes the "UITable" with "matrix data" when the app starts.