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개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!