summaryrefslogtreecommitdiff
path: root/291/CH7/EX7.7a/eg7_7a.sce
blob: ffca665a0bdb3db5fe68961d0de1e18e3fd67c6a (plain)
1
2
3
4
5
6
7
8
9
10
function result1= estimator1(X)
    result1= X(1);
    //result2= mean(X);
    
endfunction
function result2= estimator2(X)
    //result1= X(1);
    result2= mean(X);
    
endfunction