Doubt on uitable on inserting particular number of rows and columns
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
KATARI LOKESH
am 27 Apr. 2020
Beantwortet: Priyanshu Mishra
am 1 Mai 2020
Hi, I am trying to create this ui table in matla without using guide. Can anyone please help me with this
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/287963/image.png)
0 Kommentare
Akzeptierte Antwort
Priyanshu Mishra
am 1 Mai 2020
Hi Lokesh,
I have written a small code for your reference. You can proceed with this code
f = figure;
uit = uitable(f)
d = {1040.0,-245.34, 930.5;1029.2,929.1,65;-15.0,810.6,35};
uit.Data = d;
uit.ColumnName = {'X(mm)','Y(mm)','Z(mm)'}
uit.RowName = {'Mount1','Mount2','Mount3'}
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!