I am trying to plot a matlab function with 2 variables. I want to fix one variable and provide a definite range for other variable. Let me know how do I achieve this.
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am trying to plot a matlab function with 2 variables. I want to fix one variable and provide a definite range for other variable. Let me know how do I achieve this.
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 18 Mai 2016
Example:
f = @(x,y) sin(x.^2 + y.^2 - x*y); %a function of 2 variables
fixed_x = pi/9;
newf = @(y) f(fixed_x, y);
Now you can, for example,
ezplot(newf, [-20, 15])
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!