How can i get table with data of u1,u2,u3,u4?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Akzeptierte Antwort
Image Analyst
am 3 Dez. 2023
Instead of your last line where you called table2array, try this:
T = table(u1', u2', u3', u4', 'VariableNames', {'u1', 'u2', 'u3', 'u4'})
5 Kommentare
Dyuman Joshi
am 3 Dez. 2023
Image Analyst
am 3 Dez. 2023
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)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Tables finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!