myfrenet
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 版本兼容性
平台兼容性
Windows macOS Linux类别
标签
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!版本 | 已发布 | 发行说明 | |
---|---|---|---|
1.0.0.0 |