draw a plot-graph

조회 수: 2 (최근 30일)
andreas kaffas
andreas kaffas 2020년 10월 18일
댓글: andreas kaffas 2020년 10월 18일
how can i draw a graph from this equation:F(n) = x2^3 − 3x1^2 + x3 ?
Can anyone explain?
  댓글 수: 2
KSSV
KSSV 2020년 10월 18일
Define x2, x1, x3....what should be there range?
andreas kaffas
andreas kaffas 2020년 10월 18일
thank you....there was a problem with the exercise and teachers uploaded another file in which the variables are defined!!

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

답변 (2개)

madhan ravi
madhan ravi 2020년 10월 18일
  댓글 수: 2
Walter Roberson
Walter Roberson 2020년 10월 18일
This would be suitable if F(n) is some constant, such as if the equation is
andreas kaffas
andreas kaffas 2020년 10월 18일
thank you....there was a problem with the exercise and teachers uploaded another file in which the variables are defined!!

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


Walter Roberson
Walter Roberson 2020년 10월 18일
If F(n) is not a constant, then you have the problem that you have three independent variables and one dependent variable. That would require 4 dimensional plots.
The closest you can get to 4 dimensional plots is to use isosurface() or slice() .
For example:
Fn = @(x1, x2, x3) x1.^2 - 2*x2.^3 + 3*x3/5 + 4;
[X1, X2, X3] = meshgrid(linspace(-2,2,25));
Z = Fn(X1, X2, X3);
for level = -13:5:25; isosurface(X1, X2, X3, Z, level); end
  댓글 수: 1
andreas kaffas
andreas kaffas 2020년 10월 18일
thank you....there was a problem with the exercise and teachers uploaded another file in which the variables are defined!!

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

카테고리

Help CenterFile Exchange에서 Scalar Volume Data에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by