aggiunto note, piccoli fix a eigenvalues, aggiunto polinomio di chebyshev

This commit is contained in:
2014-12-17 19:33:04 +01:00
parent 436bc12ec0
commit b8e4ff7203
9 changed files with 201 additions and 22 deletions

5
samples/spline cubic.m Normal file
View File

@@ -0,0 +1,5 @@
x=[-2 0 2 3 4 5];
y=[4 0 -4 -30 -40 -30];
xx=-2:0.1:5;
yy=spline(x,y,xx);
plot(xx,yy,'g')