• 2022-06-03
    绘制[1,5]×[1,5]区域内高度为6的平面,可以使用的命令是( )。
    A: axes('View',[-37.5, 30])surface(1:5, 1:5, 6*ones(5))
    B: surf(1:5, 1:5, 6*ones(5))
    C: axes('View',[-37.5, 30])[x,y]=meshgrid(1:5);surface(x, y, 6*ones(5))
    D: [x,y]=meshgrid(1:5);surf(x, y, 6*ones(5))