Doubt on uitable on inserting particular number of rows and columns

조회 수: 1 (최근 30일)
Hi, I am trying to create this ui table in matla without using guide. Can anyone please help me with this

채택된 답변

Priyanshu Mishra
Priyanshu Mishra 2020년 5월 1일
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'}
For more information, you may refer to documentation of uitable .

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by