How to display a variable for x and y values from code in UI Table

1 vue (au cours des 30 derniers jours)
Hanrich de Kock
Hanrich de Kock le 28 Mai 2020
As i have calcualted values for x1,x2 and x3 as well as y1,y2 and y3 in my code under the specific table call back function...
how can i display this this results in a UI table with headers(x-values,y-values).
for example
x-values y-values
x1 y1
x2 y2
x3 y3

Réponses (1)

Ameer Hamza
Ameer Hamza le 28 Mai 2020
Run this example
x1 = 1; x2 = 2; x3 = 3;
y1 = 4; y2 = 5; y3 = 6;
x = [x1; x2; x3];
y = [y1; y2; y3];
t = table(x, y);
fig = uifigure;
uit = uitable(fig, 'Data', t)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by