Borrar filtros
Borrar filtros

Manipulating data from a table in app designer

7 visualizaciones (últimos 30 días)
sebastian marin quiceno
sebastian marin quiceno el 7 de Oct. de 2023
Comentada: Voss el 8 de Oct. de 2023
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

Respuesta aceptada

Voss
Voss el 8 de Oct. de 2023
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

Más respuestas (1)

Walter Roberson
Walter Roberson el 8 de Oct. de 2023
Yes?
You are setting the fields to the blank string. str2double() of the blank string is NaN.
str2double(" ")
ans = NaN
  1 comentario
sebastian marin quiceno
sebastian marin quiceno el 8 de Oct. de 2023
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.

Iniciar sesión para comentar.

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by