How to display a table without it showing "var1"?
Show older comments
x = datetime(2021,1,1) + caldays(0:4);
e = [1,6,3,2,8;4,5,6,7,7;2,4,7,8,6;]
disp(x)
t = table(x',e')
b = t(sum(e)' == max(sum(e))',1)
tstring = evalc('disp(b)')
disp(['test',num2str(tstring),' end of test.'])
I want to display it like this:
"test 05-Jan-2021 end of test."
And is there a way that i can get 5 as an variable so i can use it in other formula's?
Thanks for taking a look at my question!
Accepted Answer
More Answers (0)
Categories
Find more on MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!