How to plot a function with 3 independent variables
99 views (last 30 days)
Show older comments
Seng Hkawn N-Sang
on 13 Oct 2021
Commented: Seng Hkawn N-Sang
on 15 Oct 2021
f(x,y,z)=0.95*x+0.73*y+0.62*z-130.05
f(x,y,z); x; y; and z are values between 0 and 100.
f(x,y,z) is shown in color. How can I plot in MATLAB similar to figure below.
Thank you!

1 Comment
Accepted Answer
KSSV
on 13 Oct 2021
f = @(x,y,z) 0.95*x+0.73*y+0.62*z-130.05 ;
x = linspace(0,100) ;
y = linspace(0,100) ;
z = linspace(0,100) ;
[X,Y,Z] = meshgrid(x,y,z) ;
V = f(X,Y,Z) ;
isosurface(X,Y,Z,V,1e-4)
More Answers (0)
See Also
Categories
Find more on Surface and Mesh Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!