Question: how can print w(x,y) as matrix

If w := proc (x, y) options operator, arrow; piecewise(y <= .5, -2*tanh*(y-.25), .5 < y, 2*tanh*(.75-y)) end proc

how can print w(x,y) as matrix x=0..10,y=0..10?

Please Wait...