Reputation: 386
I can create standard output and standard error in Matlab using:
fprintf(1, "This is output"); and
fprintf(2, "This is an error");
Question: How can I collect those logs (streams) from Matlab using Java without saving them in an intermidiate log file?
Upvotes: 0
Views: 433