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

3 views (last 30 days)
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

Answers (1)

Ameer Hamza
Ameer Hamza on 28 May 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)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!