Matlab Spline ToolBox [z]

Source: Internet
Author: User

This article describes how to use MATLAB to establish and draw a spline. The example shows how to establish, evaluate, evaluate, and draw a spline.

Functions in the MATLAB spline toolbox provide functions such as creation, operation, and drawing of splines;
1. Creation of Splines
The first step is to create a spline, curve or surface. Here, splines are divided into four categories based on the prefix:
CS * Cubic Spline
PP * piecewise polynomial spline, coefficient T ^ n
SP * B-spline, coefficients of the Matrix Function B _n ^ I (t)
RP * rational B-spline

Ii. spline operation
Spline operations include: function operations: evaluation, arithmetic operations, evaluation of points, etc.
Node operation: Mainly adjusts, sets, and modifies the number of nodes.

Iii. Simple Example
% Step1: Load ctrlpoints and knots
Load data_example
% Step 2: Create the spline
SP = spmak (knots, ctrlpoints ');
Fnplt (SP, [knots (5), knots (42)]);
% Step 3: Get points on the curve
Dt = knots (5): 3: knots (42 );
P = fnval (SP, DT );
Plot (P (1, :), P (2, :), '. G ')
% Step 4: get dir draw normals
Dp1 = fnder (sp );
Dp = fnval (dp1, dt );
Len = size (dt, 2 );
For I = 1: len
Dir = dp (:, I );
Scale = 1/sqrt (dir (1) ^ 2 + dir (2) ^ 2 );
Dir = dir * scale;
Plot ([p (1, I), p (1, I) + dir (2)], [p (2, I), p (2, I) -dir (1)], 'R ');
End

The Code included in this article is:

If not, contact the ciweiyu@gmail.com
Sample result

Appendix: spline toolbox Functions
1. Cubic Splines
Csapi interpolation generates cubic Splines
Csape generates cubic splines with Given constraints
Csaps smoothly generate cubic Splines
Cscvn generates a cubic spline with interpolation parameters
Getcurve dynamically generates Cubic Spline

2. piecewise polynomial Splines
Ppmak generates piecewise polynomial Splines
Ppual calculates the piecewise polynomial spline value at the given point.

3. B-spline functions
B-spline function generated by spmak
Use spcrv to generate a uniform B-Spline Function
Spapi interpolation to generate B-spline functions
Spap2 uses the least squares method to generate B-spline functions
Spaps smooth the generated B-Spline
Configuration matrix for generating B-spline functions using spcol

4. rational splines
Rpmak generates rational splines
Rsmak generates rational splines

5. spline operation functions
Fnval calculates the spline function value at the given point.
Fmbrk returns a part of the spline function (such as breakpoint or coefficient)
Fncmb performs arithmetic operations on Splines
Fn2fm converts one form of splines into another form of Splines
Fnder evaluate the differentiation of splines (I .e. derivative)
Fndir evaluate the direction derivative of the spline function
Using fnint to calculate the points of A Spline Function
Fnjmp evaluate the function value at the break point
Fnplt line chart
Fnrfn inserts a breakpoint into the spline.
Fnlr generates the tarylor coefficient or taylor Polynomial

6. spline endpoint and node processing functions
Augknt adds one or more nodes to the array of known nodes
Aveknt calculates the average value of node array elements.
Brk2knt adds node duplicates in the node Array
Knt2brk obtains the node and its recurrence from the node array.
Knt2mlt obtains the node and its recurrence from the node Array
Sorted calculates the number of elements in the node array in the array of the other node.
Aptknt obtains the node array used to generate the spline.
Newknt redistribution of piecewise polynomial Splines
Optknt: Find the optimal node Array Used for Interpolation
Chbpnt: Find the appropriate node array used to generate the spline

Original: http://www.blogpetro.com/post/matlab-yangtiao-gongjuxiang.html

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.