How to use matlab 'spline' function in simulink ?
5 ビュー (過去 30 日間)
古いコメントを表示
Hi, I was trying to generate robot trajectory using spline function in simulink, I tried with all user function block available in simulink library but it is getting error the image is shown below. Can anybody help for this issue.
0 件のコメント
採用された回答
Titus Edelhofer
2016 年 4 月 7 日
Hi,
the error message tells you what to do, namely "declare" spline as being used not by code generation but by MATLAB:
doc coder.extrinsic
Titus
2 件のコメント
Titus Edelhofer
2016 年 4 月 11 日
Hi,
except from the typo ("ay = zeros") and the not very interesting u1 and u2 it's fine. I tried this and get nice sine approximation (as in doc spline):
function y = fcn(t)
u1= 0:10; %$DH
u2= sin(u1); %init
coder.extrinsic('spline')
y = 0;
y = spline(u1,u2,t);
Titus
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Splines についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!