Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

solve false answer with a exponential equation

1 Ansicht (letzte 30 Tage)
franco otaola
franco otaola am 12 Okt. 2016
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
hello i am trying to solve an equation and each time that i try to solve it with the matlab it keeps giving me a false value it doenst give any error or anything... here is the code
syms x
Cf=1;
C_0=10;
M=1.1*1350;
m=155;
thao=M/m;
C=C_0*exp(-x/thao)-Cf;
solve(C,x)
and it keeps giving me the
ans=(297*log(10))/31 %log(10)=1 so, 297/37 that it is aprox 9.56 when the real value is 22.06 aprox
obviusly false. i couldnt find any error or problem in the code. anyone had the same problem?

Antworten (1)

Walter Roberson
Walter Roberson am 12 Okt. 2016
log(10) is not 1. log() is natural log. The calculation gives the value you expect. Use vpa() or double() to see the decimal equivalent.
  2 Kommentare
franco otaola
franco otaola am 12 Okt. 2016
thanks, it is really bizarre that it use log() for ln()... i wouldnt expect that...
Walter Roberson
Walter Roberson am 12 Okt. 2016
I looked around a few months ago, and I could not find any programming language which used ln() for natural log. All of the major languages I checked used log()

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by