How do I convert symbolic values to numerical for uitable ?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Doug Leaffer
il 1 Dic 2024
Commentato: Walter Roberson
il 3 Dic 2024 alle 19:54
How do I Convert symbolic values to numerical for uitable ? The table itself, tbl displays fine, but I want to display the same data into a uitable. The last column is symbolic
load datafile.mat
format bank
tbl = table(t',h', round(vpa(v),2)', 'VariableNames',["Time(s)", "Height(ft)","Velocity(ft/s)"])
fig = uifigure;
uit = uitable(fig,"Data",tbl)
3 Commenti
Walter Roberson
il 3 Dic 2024 alle 19:54
uit = uitable(fig, "Data", tbl, "ColumnFormat", "bank")
Risposta accettata
Torsten
il 1 Dic 2024
syms x
f = x^2-2;
xsol = solve(f==0)
class(xsol)
xvpa = vpa(xsol)
class(xvpa)
xnum = double(xsol)
class(xnum)
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!