Undefined function 'ln' for input arguments of type 'double'.
조회 수: 36 (최근 30일)
이전 댓글 표시
Alvaro Mª Zumalacarregui Delgado
2021년 2월 22일
댓글: Alvaro Mª Zumalacarregui Delgado
2021년 2월 22일
I am trying to represent a function and before my code has an operation with a Ln, and when I run the app and click the button give this message 'Undefined function 'ln' for input arguments of type 'double'.' how can i solve it?
P = app.P.Value;
Q = app.Q.Value;
a = app.a.Value;
b = app.b.Value;
Xo = app.Xo.Value;
Yo =app.Yo.Value;
K = b.*Xo-a.*Yo;
C3 = (ln(a.*Yo)-ln(Xo))/- K;
C4 = (ln(b.*Xo)-ln(Yo))/- K;
x = 0:0.2:100;
y3 = K./(exp((K*x-K*C3))-b);
plot (app.Axes,x,y3,'r');
hold (app.Axes,'on')
y4 = - K./(exp(K*x-K*C4)-a);
plot (app.Axes,x,y4,'b');
hold (app.Axes,'off')
댓글 수: 0
채택된 답변
Steven Lord
2021년 2월 22일
The natural logarithm function in MATLAB is named log not ln. There are also log10 and log2 functions listed in the See Also section at the end of the log documentation page.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Logging에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!