I need to create a Table. How do I create the output of the table values of a function?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Jack Shea
el 17 de Nov. de 2022
Respondida: Voss
el 17 de Nov. de 2022
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);"
0 comentarios
Respuesta aceptada
Voss
el 17 de Nov. de 2022
theta = 0:15:90;
m = 55:10:75;
uitable( ...
'ColumnName',m, ...
'RowName',theta, ...
'Data',m+sind(theta).');
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
