Filter löschen
Filter löschen

Text exceeds maximum line length for Command Window display

2 Ansichten (letzte 30 Tage)
Hi every one I have employed "syms" function to calculate the derivation of an explicit equation. Due to that, the function is very complex, the MATLAB cannot show all results of "sysms" function and the "Text exceeds maximum line length for Command Window display" is presented at the end of results The code has been attached. Is there anyone to help me to save all result of "syms" function? Thanks in advance for your kindly response.
  1 Kommentar
David Goodmanson
David Goodmanson am 25 Mär. 2018
Hello Jahetbe,
Wow, that must be the longest equation I have ever seen, not counting one million digits of pi or something similar. Since it's a polynomial in two variables, do you know the largest value of m,n in x1^m * x2^n?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 25 Mär. 2018
You use a lot of numeric constants, all of which have 6 significant digits. You cannot justify calculating an exact solution to that equation. The absolute most you could justify would be 12 digits but that would be a difficult argument; really you can only justify 6 significant digits of output.
This leads to the solution:
digits(6)
vpa(expand(Dx1))
vpa(expand(Dx2))
The resulting multinomials appear to have total degree 31.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by