summaryrefslogtreecommitdiff
path: root/662/DEPENDENCIES/file03.sci
blob: af7d67f076788f828898013b3785bbe557f111c9 (plain)
1
2
3
4
5
6
7
8
//Programming Example 8.11
//evaluate the function y=x* cos(x)
        //third File

function[sol]= curve(x)
    sol  = x* cos(x);
    return;
endfunction