Viewing Symbolic Matrix Entries in Variable Tab?
조회 수: 2 (최근 30일)
이전 댓글 표시
Is there a way to view a symbolic matrix in the variable tab instead of the command window? I know I can view it in the command window, but for a larger matrix columns move down into rows and is not a great UI. When opening variable view this is how it displays symbolic entries:
I can only see each entry after double clicking into it. Is there a view option to see the actual equations from the above screen?
Applications are primarily a Jacobian Matrix or any matrix equation with a matrix of derivatives used for numerical methods. I like to symbolically solve the derivative matrix, then use those derived equations in the iteration loop therafter to reduce compilation time by only differentiating once. Viewing the results is a nice sanity check.
Any tips are appreciated. -Charlie
댓글 수: 0
채택된 답변
Walter Roberson
2023년 1월 29일
편집: Walter Roberson
2023년 2월 2일
No, No there is no way to do that.
If you
temp = arrayfun(@char, YourSymArray, 'uniform', 0);
openvar temp
then you will be able to see roughly the first 10 characters of each entry (unless you drag the edges to make the entries wider)
추가 답변 (1개)
Steven Lord
2023년 1월 30일
If you're planning to use the symbolic expression in a loop you may want to create a MATLAB function file from it using matlabFunction. You could read the generated code as a check that the expression you're evaluating is what you expect it to be.
참고 항목
카테고리
Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
