Using FPLOT to plot a multi variable function

Lets say I have function f= (x^3+y^3+z^3). For a constant y and z, I want to plot function 'f' between xmin<x<xmax using fplot. Is this possible?

 採用された回答

Walter Roberson
Walter Roberson 2014 年 2 月 6 日

1 投票

f = @(x,y,z) x^3+y^3+z^3;
ycon = 5;
zcon = .34;
fun = @(x) f(x,ycon,zcon);
xmin = -4;
xmax = 6;
fplot(fun, [xmin, xmax])

5 件のコメント

Shima Khatiri
Shima Khatiri 2017 年 8 月 24 日
What if y and z are not constant? how can we plot the general form?
Walter Roberson
Walter Roberson 2017 年 8 月 24 日
If x, y, and z are not constant, then you have three input variables and one output variable, and you would need a four-dimensional plot. There are no facilities in MATLAB to do four-dimensional plots.
Manuel Ruivo de Oliveira
Manuel Ruivo de Oliveira 2022 年 4 月 11 日
Your code gives me a plot, but also a warning:
"Warning: Function behaves unexpectedly on array inputs. To improve performance, properly vectorize your function to return an output with the same size and shape as the input arguments."
Is there an appropriate way to vectorize this?
Walter Roberson
Walter Roberson 2022 年 4 月 11 日
f = @(x,y,z) x.^3+y.^3+z.^3;
Manuel Ruivo de Oliveira
Manuel Ruivo de Oliveira 2022 年 4 月 11 日
Thanks, that works. I have a related question about plotting a function given as an integral depending on a parameter, but that seems to deserve it's own post so I'll start a new discussion.

サインインしてコメントする。

その他の回答 (2 件)

Naveen
Naveen 2014 年 2 月 6 日

0 投票

Never mind. I found it
fplot(@(x) f(x,yvalue,zvalue), [xmin xmax])
Pratiksha Shinde
Pratiksha Shinde 2020 年 8 月 7 日

0 投票

How to find FFT of boost converter Boost converter

1 件のコメント

Walter Roberson
Walter Roberson 2020 年 8 月 8 日
You should ask that in a new Question.

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeLine Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by