summaryrefslogtreecommitdiff
path: root/2.3-1/tests/unit_tests/inter.sce
blob: b5a797d9bb68b3919f3542f9efb50a25756d0c58 (plain)
1
2
3
4
5
6
7
8
9
10
11
//test for interp1
function inter()
    x=linspace(1,3,3)  //declaring a 1-D array 
    disp(x)
    y=x.^2            //values for y at equivalent value for x
    disp(y)
    xx=linspace(1,2,4)  // new points for that we have too find values using interpolation
    disp(xx)
    yy1=interp1(x,y,xx)  //calling interp1
    disp(yy1)
endfunction