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

4 vues (au cours des 30 derniers jours)
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 commentaires
Brent Kostich
Brent Kostich le 29 Mai 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 le 29 Mai 2020
Modifié(e) : Brandon Barker le 29 Mai 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.

Connectez-vous pour commenter.

Réponses (1)

Walter Roberson
Walter Roberson le 30 Mai 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 commentaires
Walter Roberson
Walter Roberson le 30 Mai 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 le 1 Juin 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.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Entering Commands dans Help Center et File Exchange

Produits


Version

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by