summaryrefslogtreecommitdiff
path: root/modules/functions/examples/f.sci
blob: 18a732ac82e7fd6101bbff1a4032b5a01c2bee84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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 [x]=f(y)
    x=y+10;
endfunction