필터 지우기
필터 지우기

Manipulating data from a table in app designer

조회 수: 7 (최근 30일)
sebastian marin quiceno
sebastian marin quiceno 2023년 10월 7일
댓글: Voss 2023년 10월 8일
Greetings everyone, my fundamental objective is to take the data from an app designer table and then use it. For example, add the data in position (1,1) with the data in position (1,2). But when I take them with the get(table, "Data") function and then use the str2double() function to supposedly convert the data type. When I use the disp() function in the command window I get "NaN".
When I write, for example, "2" and click Button. Spaces are formed in the table to write 2x5. That's where I type the numbers and then I want to try to access them through Button2.
function ButtonPushed(app, event)
global n;
global tabla;
n =1:5;
tabla = table;
for i = 1:app.EditField.Value
for j = n
tabla{i,j}=" ";
end
end
app.UITable.Data = tabla;
end
% Button pushed function: Button2
function Button2Pushed(app, event)
se = get(app.UITable,"Data");
si=str2double(se);
disp(si)
end

채택된 답변

Voss
Voss 2023년 10월 8일
tabla = table;
% ...
app.UITable.Data = tabla;
The uitable's Data is a table variable, so you need to get the data out of the table variable before doing str2double in Button2Pushed:
se = get(app.UITable,"Data");
si=str2double(se{:,:});
For example:
tabla = table("1","2") % a table variable
tabla = 1×2 table
Var1 Var2 ____ ____ "1" "2"
str2double(tabla) % NaN
ans = NaN
str2double(tabla{:,:}) % the contents of the table variable, [1 2]
ans = 1×2
1 2

추가 답변 (1개)

Walter Roberson
Walter Roberson 2023년 10월 8일
Yes?
You are setting the fields to the blank string. str2double() of the blank string is NaN.
str2double(" ")
ans = NaN
  댓글 수: 1
sebastian marin quiceno
sebastian marin quiceno 2023년 10월 8일
It's true, you're right, I needed to detail the problem better. When I write, for example, "2" and click Button. Spaces are formed in the table to write 2x5. That's where I type the numbers and then I want to try to access them through Button2.

댓글을 달려면 로그인하십시오.

카테고리

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