Hi guys :)
With Scilab, you can create a splin and then interpolate it : (proba is a function I created )
So, in Python, I tried this but np.interp doesn't want to interpolate a cubic spline .. :
Thank u :)
With Scilab, you can create a splin and then interpolate it : (proba is a function I created )
Output:Vpart = linspace(0,vmax, Nbr)
Pt=rand(100,1)
for i=1:Nbr
Array(1,i)=intg(0,vmax, proba)
end
Curve=splin(Array,Vpart)
Interp=interp(Pt, Pr, Array, Curve)
So, in Python, I tried this but np.interp doesn't want to interpolate a cubic spline .. :
Vpart=linspace(0,vmax, Nbr) Pt=np.random.rand(Nbr,1) Array=np.zeros(Nbr) for i in range(0,Nbr): Array[i]=quad(0,vmax, proba) Curve=interp1d(Array, Vpart, kind='cubic') Interp=np.interp( .......If someone knows how I could do something like that, It would be amazing :D
Thank u :)
