comparison scripts/polynomial/splinefit.m @ 21546:f7f97d7e9294

doc: Wrap m-file docstrings to 79 characters + newline (80 total). * isrecording.m, soundsc.m, delaunay3.m, cell2mat.m, cumtrapz.m, del2.m, inputParser.m, interp1.m, interp3.m, narginchk.m, profile.m, validateattributes.m, delaunayn.m, tsearchn.m, voronoin.m, brighten.m, cmunique.m, colorcube.m, imfinfo.m, imshow.m, edit.m, orderfields.m, run.m, warning_ids.m, ode23.m, ode45.m, odeget.m, integrate_adaptive.m, kahan.m, ode_struct_value_check.m, runge_kutta_23.m, fminunc.m, fsolve.m, fzero.m, pkg.m, build.m, specular.m, view.m, bar.m, barh.m, contour3.m, isosurface.m, line.m, pie.m, pie3.m, quiver3.m, scatter.m, scatter3.m, stem3.m, stemleaf.m, surfl.m, tetramesh.m, isfigure.m, mkpp.m, pchip.m, residue.m, splinefit.m, rmpref.m, unique.m, eigs.m, ilu.m, factor.m, factorial.m, gallery.m, hankel.m, histc.m, ols.m, finv.m, fpdf.m, kruskal_wallis_test.m, weekday.m: Wrap m-file docstrings to 79 characters + newline (80 total).
author Rik <rik@octave.org>
date Sun, 27 Mar 2016 15:50:01 -0700
parents 516bb87ea72e
children ecce63c99c3f
comparison
equal deleted inserted replaced
21545:a81c9a0a05e3 21546:f7f97d7e9294
29 ## noisy data, @var{x} and @var{y}. 29 ## noisy data, @var{x} and @var{y}.
30 ## 30 ##
31 ## @var{x} is a vector, and @var{y} is a vector or N-D array. If @var{y} is an 31 ## @var{x} is a vector, and @var{y} is a vector or N-D array. If @var{y} is an
32 ## N-D array, then @var{x}(j) is matched to @var{y}(:,@dots{},:,j). 32 ## N-D array, then @var{x}(j) is matched to @var{y}(:,@dots{},:,j).
33 ## 33 ##
34 ## @var{p} is a positive integer defining the number of intervals along @var{x}, 34 ## @var{p} is a positive integer defining the number of intervals along
35 ## and @var{p}+1 is the number of breaks. The number of points in each interval 35 ## @var{x}, and @var{p}+1 is the number of breaks. The number of points in
36 ## differ by no more than 1. 36 ## each interval differ by no more than 1.
37 ## 37 ##
38 ## The optional property @var{periodic} is a logical value which specifies 38 ## The optional property @var{periodic} is a logical value which specifies
39 ## whether a periodic boundary condition is applied to the spline. The 39 ## whether a periodic boundary condition is applied to the spline. The
40 ## length of the period is @code{max (@var{breaks}) - min (@var{breaks})}. 40 ## length of the period is @code{max (@var{breaks}) - min (@var{breaks})}.
41 ## The default value is @code{false}. 41 ## The default value is @code{false}.