Matlab Symbol output in live Script
2 次查看(过去 30 天)
显示 更早的评论
Hello, does anyone know how I can change the symbolic output in Matlab so that matlab exactly matches my input? Currently, Matlab defines new "variables" to shorten the output.
I don't want the substitution
0 个评论
采纳的回答
Sai Sri Pathuri
2020-7-8
You may use sympref function with 'AbbreviateOutput' parameter set to false to avoid the creation of new variables
sympref('AbbreviateOutput',false);
syms K EI l1
K1 = [12*EI/l1^3, 6*EI/l1^2, -12*EI/l1^3, 6*EI/l1^2;
6*EI/l1^2, 4*EI/l1, -6*EI/l1^2, 2*EI/l1;
-12*EI/l1^3, -6*EI/l1^2, 12*EI/l1^3, -6*EI/l1^2;
6*EI/l1^2, 2*EI/l1, -6*EI/l1^2, 4*EI/l1;]
Refer this documentation for more information
1 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!