Is there a non-eval based solution to effectively getting the output of disp as a string value?

4 views (last 30 days)
The related question has an answer:
x = evalc('disp(''hello world'')');
However, I'd really rather not use eval* functions for a couple of reasons. I imagine that `disp` itself is implemented in terms of the function I'm looking for, even if it is an undocumented function.
  4 Comments
Brent Kostich
Brent Kostich on 29 May 2020
What is your purpose behind getting "the string-view of generic MATLAB values"? Chances are there is a way to accomplish your goal without displaying the values.
Brandon Barker
Brandon Barker on 29 May 2020
Edited: Brandon Barker on 29 May 2020
The goal is to use the C Engine API to display such output (output of arbitrary MATLAB values that is); when using the C engine API, the output of such functions is not used on stdout, but I can get the output of MATLAB function calls.
A lot of languages that have some notion of a way to get such a canonical string view, though in some languages, not all objects are supported. I guess Java Objects might be one such instance in MATLAB. Python has the 'repr' function for instance, and Haskell has the 'show' function for types that have an instance of the Show typeclass.

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 30 May 2020
You can use diary() to have the output of disp copied to a file, then turn diary off and read the file. This will not be any better than evalc.
  2 Comments
Walter Roberson
Walter Roberson on 30 May 2020
The code for display() does not build up the character representation of complex objects and then afterwards send the character representation to the command window. Instead, the various display() methods build up the output in small pieces, mostly emitting the results as they go. A few of the routines do build up multiple columns and emit that, but at the moment I do not recall anywhere that builds up multiple rows to be emitted together (I could not rule out the possibility at the moment; each datatype is responsible for its own strategy.)
Brandon Barker
Brandon Barker on 1 Jun 2020
Thanks Walter, that's interesting to know. As for diary, I'm aware of it and have recently used it with the MATLAB Engine for general logging purposes.

Sign in to comment.

Categories

Find more on Entering Commands in Help Center and File Exchange

Products


Release

R2017a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!