필터 지우기
필터 지우기

How do i use fimplicit function for a graph?

조회 수: 1 (최근 30일)
dunphy
dunphy 2020년 4월 19일
편집: madhan ravi 2020년 4월 20일
How do i do this using fimplicit function? I tried it and a heart comes out in a graph. I would just like to know if there should be and x and y element on this kind of problem? For instance y vs x?
This is what i first did. Do i put elements to recognize the x and y? What should be my independent and dependent variable?
  댓글 수: 1
Walter Roberson
Walter Roberson 2020년 4월 19일
you used the square root of x squared, but the question requires the cube root of x squared.

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

답변 (1개)

madhan ravi
madhan ravi 2020년 4월 19일
편집: madhan ravi 2020년 4월 20일
(x.^2).^(1/3) % edited after sir Walter’s comment
  댓글 수: 2
Walter Roberson
Walter Roberson 2020년 4월 20일
The question does not involve any square roots, only a cube root.
(x.^2).^(1/3)
Or alternately, because we can predict that x^2 will be real-valued and non-negative:
nthroot(x.^2, 3)
madhan ravi
madhan ravi 2020년 4월 20일
Ah thank you sir Walter.

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

카테고리

Help CenterFile Exchange에서 Directed Graphs에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by