What is the best way to remove a knot from a (univariate) spline?

조회 수: 1 (최근 30일)
Unai San Miguel
Unai San Miguel 2016년 3월 31일
In my problem, I have a planar curve, i.e., a 2-valued univariate spline function s. I insert k-1 times a value in the knot sequence with fnrfn(s, repmat(u0, [1, k-1]) and I modify slightly the resulting coefficients. If I wanted to express the modified spline in the space of the original one, what would be the best way?
I am thinking in something like:
k = s.order;
sNew = fnrfn(s, repmat(u0, [1, k-1]);
sNew.coefs = something(sNew.coefs);
cheb = chbpnt(s.knots, s.order);
spapi(s.knots, cheb, fnval(sNew, cheb))
Regards,
Unai

답변 (0개)

카테고리

Help CenterFile Exchange에서 Spline Postprocessing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by