I need to create a Table. How do I create the output of the table values of a function?

조회 수: 1 (최근 30일)
theta = 0:15:90;
m=55:10:75;
col = (m);
row = (theta);
uitable('columnname',col,'rowname',row,'Data',);
What Should I input for data in order to create the table for the function "v(x,:)=m+sin(theta/180*pi);"

채택된 답변

Voss
Voss 2022년 11월 17일
theta = 0:15:90;
m = 55:10:75;
uitable( ...
'ColumnName',m, ...
'RowName',theta, ...
'Data',m+sind(theta).');

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

태그

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by