What should we do when Text exceeds maximum line length for Command Window display in matlab?

63 views (last 30 days)
hi.I want to run the MFILE and (see D matrix) which is attached but there is an error :
Text exceeds maximum line length for Command Window display
when I simplify(D) MATLAB hangs .How can I fix it?
  2 Comments
Jan
Jan on 17 Oct 2018
The ZIP file contains 3 M-files: SmallDecimal2Zero.m, ti.m and UR10_Dynamic_parameters.m. Where do I have to "see D matrix"? I recommend, to post the relevant part of the code instead of some files and a vague hint.
Najmeh Eskandari
Najmeh Eskandari on 17 Oct 2018
Edited: Najmeh Eskandari on 17 Oct 2018
UR10_dynamic_parameters but the smallDecimal2Zero.m and ti.m functions have been used in the UR10_Dynamic_parameters.m. The codes are short and D is obvious in Ur10....
Thank you

Sign in to comment.

Accepted Answer

madhan ravi
madhan ravi on 17 Oct 2018
save the D matrix as a text file using:
dlmwrite('D_matrix.txt',D) %assuming matrix D is contains doubles

More Answers (1)

Steven Lord
Steven Lord on 17 Oct 2018
From the messages you've posted, D is an extremely long symbolic expression. While you might be able to read it, I'm skeptical that you'll find it useful or informative. A quick Google search says that a rule of thumb is that one 8.5" by 11" page of text is about 3000 characters, meaning that if you printed your symbolic expression it would span at least 8 pages or so (if I remember the threshold for the "Text exceeds maximum line length for Command Window display" message correctly.)
Now if your symbolic expression is that long, it's likely to be at least somewhat complicated. I'm not sure if your simplify command hung or if it is just taking a very long time to try to simplify that complicated expression.
Some suggestions for ways to do some simplification of D: use subs to substitute in numeric values for some or all of the symbolic variables, use vpa to approximate the symbolic form of a numeric expression as a number with perhaps fewer digits, extract common subexpressions using subexpr, convert it to a char and write that char to a file on disk as madhan ravi suggested, or maybe convert it into a MATLAB function file using matlabFunction with optimization enabled.

Categories

Find more on Characters and Strings in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!