How to plot a function that relies on another function?

조회 수: 21 (최근 30일)
Maxwell Yant
Maxwell Yant 2020년 2월 21일
댓글: Stephen23 2020년 2월 22일
Hello, so I want to plot X on the Y-axis with Y on the X-axis with Y ranging from [-10 10]. However values of X depend on A which depends on Y so I cant figure out how I can plot Y with values ranging from [-10 10] and have X on the Y-axis. I realize I can initially make Y an array but i want infinite data points in the interval. Sorry if the wording is confusing.
  댓글 수: 2
Maxwell Yant
Maxwell Yant 2020년 2월 21일
sorry this is my first post I dont know why it printed out like a line of code
Stephen23
Stephen23 2020년 2월 22일
"sorry this is my first post I dont know why it printed out like a line of code"
I don't think it is anything that you did: some recent changes to this forum seem to incorrectly format the first paragraph as code, I have seen quite a few questions like this in the last week or so.
I just fixed your question by selecting the text and clicking the TEXT button:

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

채택된 답변

Star Strider
Star Strider 2020년 2월 21일
Since ‘A’ is a function, it must be evaluated in order to use its results.
Try this:
A = @(y) y*2;
X = @(y) A(y)+10;
figure
fplot(X, [-10 10])
Also, note the slight changes in the code.
  댓글 수: 4
Maxwell Yant
Maxwell Yant 2020년 2월 21일
ok thanks again!
Star Strider
Star Strider 2020년 2월 22일
As always, my pleasure!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by