Define the spline function of degree $q$ on the interval $[\xi_0,\xi_K]$ $$f(t)=\sum_{j=1}^{K+q}b_j B_j(t)$$ where $B_j$ are degree $q$ B-spline basis functions determined by the knots $\xi_{-q}<\xi_{-q+1}<\ldots<\xi_{0}<\xi_{1}<\ldots<\xi_{K}$. I know there is an expression for the derivative when we have multiple end knots, but what is the expression for this kind of knot sets? See http://www.cs.mtu.edu/~shene/COURSES/cs3621/NOTES/spline/B-spline/bspline-derv.html or http://en.wikipedia.org/wiki/B-spline#Derivative_expressions
2026-03-25 08:08:34.1774426114
derivative B-spline with own knot set
1.9k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in DERIVATIVES
- Derivative of $ \sqrt x + sinx $
- Second directional derivative of a scaler in polar coordinate
- A problem on mathematical analysis.
- Why the derivative of $T(\gamma(s))$ is $T$ if this composition is not a linear transformation?
- Does there exist any relationship between non-constant $N$-Exhaustible function and differentiability?
- Holding intermediate variables constant in partial derivative chain rule
- How would I simplify this fraction easily?
- Why is the derivative of a vector in polar form the cross product?
- Proving smoothness for a sequence of functions.
- Gradient and Hessian of quadratic form
Related Questions in NUMERICAL-METHODS
- The Runge-Kutta method for a system of equations
- How to solve the exponential equation $e^{a+bx}+e^{c+dx}=1$?
- Is the calculated solution, if it exists, unique?
- Modified conjugate gradient method to minimise quadratic functional restricted to positive solutions
- Minimum of the 2-norm
- Is method of exhaustion the same as numerical integration?
- Prove that Newton's Method is invariant under invertible linear transformations
- Initial Value Problem into Euler and Runge-Kutta scheme
- What are the possible ways to write an equation in $x=\phi(x)$ form for Iteration method?
- Numerical solution for a two dimensional third order nonlinear differential equation
Related Questions in SPLINE
- Approximate spline equation with Wolfram Mathematica
- Almost locality of cubic spline interpolation
- inhomogeneous coordinates to homogeneous coordinates
- Can the relocation of one control point of a NURBS curve be compensated by an adjustment of some weights?
- How to construct a B-spline from nodal point in Matlab?
- Evaluation the interpolation polynomial at $x$
- Book suggestions on B-spline method for solving differential equations
- C2 continuous Bezier contour.
- Formula for the partial derivative of a bivariate tensor-product spline on a grid of points
- Integral of two zero-order spline basis functions
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
As far as I know, the formula for the derivative of a b-spline curve does not make any special assumptions about the form of the knot sequence. So, the formulae given in Shene's notes should work fine, regardless of what knots you use in the original curve.
First, a basic fact: if you want to define a set of b-spline basis functions of a given order, then the number of knots you need will be equal to the number of basis functions plus the order. If you form a curve from these basis functions, then the number of coefficients (control points) will equal the number of basis functions, of course. So, another way of stating this basic rule is $$ \text{number of knots} = \text{number of control points} + \text{order} $$ Here's another way to say more-or-less the same thing. Suppose you have a sequence of knots $\{\xi_i\}$, and you want to define $K+q$ b-spline basis functions of degree $q$ (order $q+1$) using these knots. Further, suppose that you want the basis functions to be defined on the interval $[\xi_0, \xi_K]$. Then you will need to have $q+1$ knots that are $\le \xi_0$ and $q+1$ knots that are $\ge \xi_K$. Often this is achieved by giving $\xi_0$ and $\xi_K$ multiplicity $q+1$, but this isn't the only way.
So, the description in your question is flawed. Your curve has $K+q$ coefficients (control points), and order $q+1$ (degree $q$), so the number of knots must be $(K+q)+(q+1) = K+2q+1$. I think your knot sequence ought to be $\xi_{-q}, \ldots, \xi_{K+q}$, not $\xi_{-q}, \ldots, \xi_{K}$. This will give you a total of $K+2q+1$ knots, as required. The b-spline curve is defined on the interval $[\xi_0, \xi_K]$.
From Shene's notes, you can see that the derivative will be a b-spline curve that is again defined on the interval $[\xi_0,\xi_K]$. It will have $K+q-1$ coefficients, and order $q$ (degree $q-1$), so the number of required knots is $(K+q-1) + q = K+2q-1$ knots. This is two less than the number of knots used by the original curve.
To get the knot sequence for the derivative curve, you simply drop the first and last knots, so you end up with the sequence $\xi_{-q+1}, \ldots,\xi_{K+q-1}$.
Again, we don't need any special assumptions about the multiplicities of end knots.
There is another description of b-spline curve derivatives here. It doesn't tell you any more than Shene's notes, but the array indexing is a bit more sane, so it might be easier to understand.