Difference between revisions of "Herm spline.m"

From Spinach Documentation Wiki
Jump to: navigation, search
(Restore pre-bulk-edit wiki content)
(Update function See also links and function index membership)
 
(2 intermediate revisions by the same user not shown)
Line 6: Line 6:
 
     y=herm_spline(f0,df0,f1,df1,x)
 
     y=herm_spline(f0,df0,f1,df1,x)
  
==Arguments==
+
==Parameters==
  
 
     f0  - function value(s) at the left edge, a real
 
     f0  - function value(s) at the left edge, a real
Line 31: Line 31:
  
 
==See also==
 
==See also==
[[Kernel_utilities#Numerical_infrastructure|Numerical infrastructure]]
+
[[acomm.m]], [[arnoldi.m]], [[atranspose.m]], [[aux_mat.m]], [[binpack.m]], [[cheap_norm.m]], [[cheb_coeff.m]], [[clean_up.m]], [[dirdiff.m]], [[eigenfields.m]], [[expdrop.m]], [[expmint.m]], [[expmint2.m]], [[fftdiff.m]], [[fourdif.m]], [[fourlap.m]], [[frob_chop.m]], [[gaussfun.m]], [[hdot.m]], [[jacobianest.m]], [[keep_rank.m]], [[krondelta.m]], [[kronm_new.m]], [[logfactorial.m]], [[lorentzcon.m]], [[lorentzfun.m]], [[md5_hash.m]], [[mprealloc.m]], [[remncomm.m]], [[remtrace.m]], [[rspert.m]], [[rspt_eig.m]], [[snormpdf.m]], [[svd_shrink.m]], [[tikhoind.m]], [[tikhonov.m]], [[trapdiff.m]], [[unit_oper.m]], [[unit_state.m]], [[vvpert.m]], [[Kernel_utilities]]
 
 
  
 
''Version 2.6, authors: [[Ilya Kuprov]]''
 
''Version 2.6, authors: [[Ilya Kuprov]]''

Latest revision as of 19:37, 6 June 2026

Cubic Hermite spline on [0,1] interval from values and derivatives at the interval edges.

Syntax

    y=herm_spline(f0,df0,f1,df1,x)

Parameters

   f0  - function value(s) at the left edge, a real
         scalar or array

   df0 - function derivative(s) at the left edge,
         a real scalar or array

   f1  - function value(s) at the right edge, a real
         scalar or array

   df1 - function derivative(s) at the right edge,
         a real scalar or array

   x   - query point(s) inside [0,1] interval,
         a real scalar or array

Outputs

   y   - the value of the spline(s) at the query point(s)

Notes

Function values and derivatives can be scalars (in which case the same spline is evaluated at all query points) or arrays of the same size as x, in which case multiple splines are evaluated at their corresponding query points.

See also

acomm.m, arnoldi.m, atranspose.m, aux_mat.m, binpack.m, cheap_norm.m, cheb_coeff.m, clean_up.m, dirdiff.m, eigenfields.m, expdrop.m, expmint.m, expmint2.m, fftdiff.m, fourdif.m, fourlap.m, frob_chop.m, gaussfun.m, hdot.m, jacobianest.m, keep_rank.m, krondelta.m, kronm_new.m, logfactorial.m, lorentzcon.m, lorentzfun.m, md5_hash.m, mprealloc.m, remncomm.m, remtrace.m, rspert.m, rspt_eig.m, snormpdf.m, svd_shrink.m, tikhoind.m, tikhonov.m, trapdiff.m, unit_oper.m, unit_state.m, vvpert.m, Kernel_utilities

Version 2.6, authors: Ilya Kuprov