// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab // Copyright (C) INRIA // // This file is released under the 3-clause BSD license. See COPYING-BSD. //============================ // Example How to do a function //============================ function [z]=g(x,y) z=x+y; endfunction