Fungsi 2D Plot Scilab

x = [-5 : 0.1 : 5];
function y = f(x)
	y = 3 * x^2
endfunction

//to trace your 2D function use plot2d() like this :
plot2d(x, f(y))
Sorann