how to change displayed format of numbers?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi,
My Code:
m1=5
m2=10
deltaTL=12
d=0.06
% Determine cut-off frequency fb
syms fb
A=solve(20*log10(m1+m2)+20*log10(fb)-47.3+deltaTL== 20*log10(m1*fb)-48 + 20*log10(m2*fb)-48+20*log10(fb*d)-29,fb)
I end up with the A value displayed in Command Window
A = ((625000000*10^(18353874309987341/28147497671065600))/4563)^(1/2)/2
How can I make Matlab calculate it as single value?
Thanks, Dominika
댓글 수: 0
채택된 답변
Mischa Kim
2014년 4월 7일
편집: Mischa Kim
2014년 4월 7일
Dominika, use
A = vpa(solve(...))
or
A = vpasolve(...)
댓글 수: 0
추가 답변 (1개)
참고 항목
카테고리
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!