- 1st parameter is the MATLAB statement to evaluate
- 2nd parameter is the stream buffer for storing the output of the MATLAB statement
- 3rd parameter is the stream buffer for storing the error message from the MATLAB statement
Matlab engine eval: should I use the exception message or the error stream content ?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Felix Arnoux
am 7 Jan. 2021
Kommentiert: Felix Arnoux
am 13 Jan. 2021
Hello,
When I use the Matlab engine eval, I can provide output and error streams. But the eval() can also throw exceptions, which contains error messages:
Then which one should I use: the exception message or the error stream ?
Moreover, if something is returned in the error stream, is it always an error ? or warnings can also appear in this stream ?
Many thanks !
0 Kommentare
Akzeptierte Antwort
Pranav Verma
am 13 Jan. 2021
Hi Felix,
void eval(const matlab::engine::String &statement,
const std::shared_ptr<matlab::engine::StreamBuffer> &output = std::shared_ptr<matlab::engine::StreamBuffer> (),
const std::shared_ptr<matlab::engine::StreamBuffer> &error = std::shared_ptr<matlab::engine::StreamBuffer> ())
You can use the error stream as it contains the error thrown by the MATLAB statement in case it fails. The error stream contains the error thrown by the MATLAB statement and not the warnings.
The matlab::engine::MATLABEngine documentation explains well about the exceptions and output/error streams in eval function along with several other functions used to evaluate MATLAB code.
Thanks
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Call MATLAB from C finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!