How can i get table with data of u1,u2,u3,u4?
3 次查看(过去 30 天)
显示 更早的评论
0 个评论
采纳的回答
Image Analyst
2023-12-3
Instead of your last line where you called table2array, try this:
T = table(u1', u2', u3', u4', 'VariableNames', {'u1', 'u2', 'u3', 'u4'})
5 个评论
Image Analyst
2023-12-3
round has an option to round to a certain number of decimal points.
format long g
x = rand(10, 1)
%Number of digits after the decimal
N = 5;
y = round(x, 5)
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!