Storing data of the whole uitable into a variable

2 次查看(过去 30 天)
I am a beginner in Matlab and my teacher assigned us a task of creating an app where you can store matrices in different variables and then using those variables to conduct different operations(e.g. addition subtraction, multiplication and division). Currently I have only accomplished on inputing data into the uitable as a matrix via inputdlg and planning on adding a "Store" button to store the data from the uitable into a variable. Is there any way to store data from uitable in to a variable?
Here is my file for reference:
  3 个评论
Gustav
Gustav 2023-11-3
May I know your suggestion as to what should I do to store the values inside the uitable into a variable?
Yeah its like creating a calculator for matrices.
Rik
Rik 2023-11-3
The contents of a uitable are stored in the data property, so var=obj.Data is all you need (where obj is the handle to your uitable, probably something like app.table).

请先登录,再进行评论。

采纳的回答

Taylor
Taylor 2023-11-3
You can use public properties to access variables from an app outside of an app.
  1 个评论
Gustav
Gustav 2023-11-4
Thank you so much for this. So far the app is able to store values of the matrices from the uitable.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by