Hello , I have an inverse function
x = -y^2+10
but i don't know how to declare and plot it.
I tried to do
y = -x^2 +10
g = finverse(y)
ezplot ( x,g ,[-2,12])
and "imaginary parts of complex x and/or y arguments ignored error in matlab" error appears.
what function should i use for this problem ?
Thank you !!!

 채택된 답변

Alan Stevens
Alan Stevens 2020년 12월 22일

0 개 추천

How about
y = -10:10;
x = 10-y.^2;
plot(x,y),grid
xlabel('x'),ylabel('y')

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Line Plots에 대해 자세히 알아보기

태그

질문:

2020년 12월 22일

답변:

2020년 12월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by