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

56 次查看(过去 30 天)
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 个评论
Jan
Jan 2018-10-17
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 2018-10-17
编辑:Najmeh Eskandari 2018-10-17
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

请先登录,再进行评论。

采纳的回答

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

更多回答(1 个)

Steven Lord
Steven Lord 2018-10-17
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.

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by