Giter Site home page Giter Site logo

Comments (2)

robertdj avatar robertdj commented on September 24, 2024 1

Thanks @hyrodium ! It makes sense that the constructor extends the knots based on the order.

from bsplines.jl.

hyrodium avatar hyrodium commented on September 24, 2024

Here, length(basis) returns 6, but I expect 4.

It seems the constructor BSplineBasis automatically inserts additional knots on the endpoints. (i.e. the knot vector will be converted from [0,0,0,1,1,1] to [0,0,0,0,1,1,1,1] for order 2 (polynomial degree 1). ) With these converted knot vector, number of B-spline functions is 6.

If you would like to have four B-spline functions with knots (0,1) and polynomial degree 1, the following script seems working fine here.

julia> basis = BSplineBasis(2, [0,0,1,1])
4-element BSplineBasis{Vector{Int64}}:
 order: 2
 breakpoints: [0, 0, 1, 1]

julia> length(basis)
4

Btw, I'm also working on another B-spline package, named BasicBSpline.jl. With this package, you can solve this issue like this:

julia> using BasicBSpline

julia> k = KnotVector(0,1)*3
KnotVector([0.0, 0.0, 0.0, 1.0, 1.0, 1.0])

julia> P = BSplineSpace{1}(k) # polynomial degree 1
BSplineSpace{1, Float64}(KnotVector([0.0, 0.0, 0.0, 1.0, 1.0, 1.0]))

julia> dim(P)
4

from bsplines.jl.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.