How can I save the output of display in a string
2 views (last 30 days)
Show older comments
I would like to do:
displaystring = display(obj);
0 Comments
Accepted Answer
Aaditya Kalsi
on 12 Apr 2014
You can do this with EVALC (<http://www.mathworks.com/help/matlab/ref/evalc.html>)
displaystring = evalc('display(obj)');
0 Comments
More Answers (0)
See Also
Categories
Find more on MATLAB Compiler SDK in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!