Using surf with two-dimensional function handle argument

15 次查看(过去 30 天)
How might I use meshgrid and surf to plot a surface of a two-dimensional function handle?
So instead of f(x1,x2), f(x) when x=[x1 x2]
f =@(x1,x2) x1.^2 + x2.^2;
t = linspace(-10,10,20);
[xx,yy] = meshgrid(t,t);
surf(xx,yy,f(xx,yy))

采纳的回答

Walter Roberson
Walter Roberson 2018-2-13
f =@(x) x(1).^2 + x(2).^2;
t = linspace(-10,10,20);
[xx,yy] = meshgrid(t,t);
surf(xx,yy,arrayfun(@(x,y)f([x,y]),xx,yy))

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by