필터 지우기
필터 지우기

complex function inverse plot

조회 수: 7 (최근 30일)
fima v
fima v 2020년 2월 26일
답변: KSSV 2020년 2월 26일
Hello, i have a plot a function
y=1/(ln(x)-0.1)
how can i plot X as a function of Y ,when y=[5:0.01:6]
Thanks.
  댓글 수: 2
Ankit
Ankit 2020년 2월 26일
편집: Ankit 2020년 2월 26일
syms x
y=(5:0.01:6);
y=1./(log(x)-0.1);
g = finverse(y);
plot(y,g);
For this you need symbolic tool box, I would like you to read this link: https://de.mathworks.com/matlabcentral/answers/286749-find-inverse-of-a-function
fima v
fima v 2020년 2월 26일
Hello Ankit, When i ran your code it gave m an error on the plot command
"DATA must be numeric,datetime,duration or an array convertible to double"
g,y has dimentions of 1X1
where is the problem?
Thanks.

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

채택된 답변

KSSV
KSSV 2020년 2월 26일
On solving it manually....we have:
y = 1/(log(x)-0.1) ;
x = exp(1/y+0.1) ;
To plot:
y=[5:0.01:6] ;
x = exp(1./y+0.1) ;
plot(x,y)

추가 답변 (1개)

John D'Errico
John D'Errico 2020년 2월 26일
Note that the natural log function is NOT written as ln in MATLAB, but just as log.
Next, in general, it may be impossible to plot your relationship, because there may be infinitely many disjoint regions over which your plot would need to be generated. For example, suppose you wanted to plot the regions where something as simple as sin(1./x) is between .5 and 1?
If a solution exists, where the function has a simple inverse, and if you have the symbolic toolbox, then finverse can help you.
syms X
Y = 1/(log(X) - 0.1)
fplot(finverse(Y),[5,6]);
xlabel 'Y'
ylabel 'X'
grid on
Or, if you want to use plot, you could do it like this:
syms X
Y = 1/(log(X) - 0.1);
y = 5:.01:6;
xfun = matlabFunction(finverse(Y));
plot(y,xfun(y),'-');
xlabel 'Y'
ylabel 'X'
grid on
If you don't have the symbolic toolbox, then you would need to use a loop, and then use fzero to compute the inverse.

카테고리

Help CenterFile Exchange에서 Numbers and Precision에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by