myfrenet

版本 1.0.0.0 (2.0 KB) 作者: Mehmet OZTURK
Construct tangent, normal and binormal vectors of a curve
2.1K 次下载
更新时间 2008/12/10

查看许可证

Calculation of Tangent (T), Normal (N) and Binormal (B) of a continuous curve at every points of the curve.

function [T N B]=myfrenet(x,y,z,init)
% "x","y",and "z" is the coordinates of the curve. The curve also can be 2d.
% "init" is initial normal vector that user can be specified. With this input, you can freely initialize your vectors.

Although the name of the function is "myfrenet", the vectors are calculated in a different way from "frenet" equations because of some discontinuities of "frenet".

Derrivatives of the curve are calculated with spline fitting, therefore spline toolbox are required. If the toolbox are not available, users can change the derrivative calculation method such as by using "diff" or "gradient" command.

% Example
clear,clc
t=2*pi*linspace(-1/2,1/2,100).';
x=cos(t); y=sin(t); z=t;
myfrenet(x,y,z)

引用格式

Mehmet OZTURK (2024). myfrenet (https://www.mathworks.com/matlabcentral/fileexchange/22376-myfrenet), MATLAB Central File Exchange. 检索时间: .

MATLAB 版本兼容性
创建方式 R2008a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Splines 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0