format of output in command window

조회 수: 7 (최근 30일)
M Gokul
M Gokul 2016년 6월 1일
댓글: M Gokul 2016년 6월 2일
I am getting output of simple math equations
36.0801*1.1462-181.04*(-.13341-.05423*K))/36.0801
(53973921897849552896*K)/198352447406604296875 + 720263206506893453689/396704894813208593750.
i am not getting the decimal form!
i need the answer in decimal form so as to perform more calculations
  댓글 수: 1
Azzi Abdelmalek
Azzi Abdelmalek 2016년 6월 2일
You are getting this result from what?

댓글을 달려면 로그인하십시오.

채택된 답변

Ahmed Rashid
Ahmed Rashid 2016년 6월 2일
You can use
syms K
A = (36.0801*1.1462-181.04*(-.13341-.05423*K))/36.0801;
d = 5; % decimal accuracy;
vpa(A,d)
  댓글 수: 3
Ahmed Rashid
Ahmed Rashid 2016년 6월 2일
If you want to evaluate the expression you can use
syms K
A = (36.0801*1.1462-181.04*(-.13341-.05423*K))/36.0801;
subs(A, K, 1) % K = 1;
M Gokul
M Gokul 2016년 6월 2일
thank you I found out that. Vpa has to be used wen using symbolic var thanks very much

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Conversion Between Symbolic and Numeric에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by