Trajectory designing Matlab code
显示 更早的评论
Hi Dear all i want to make a trajectory path which i have done but i am unable to get the output in simulink please help me fast what mistake i am doing????
function [a3,a2,a1,a0]= TrajCreate(theta0,thetaf,thetad0,thetadf,t)
T=20;
a0 = theta0;
a1 = thetad0;
a2 = (-3 * (theta0 - thetaf) - (2 * thetad0+thetadf )*T)/ T ^ 2;
a3 = (2 * (theta0 - thetaf) + (thetad0+thetadf )*T)/ T ^ 3;
end
% Run File theta0=10; thetaf=50; thetad0=0; thetadf=0;
[a3,a2,a1,a0]=TrajCreate(theta0,thetaf,thetad0,thetadf)
p=[a3 ,a2 , a1 , a0];
t=linspace(0,20,100);
Pos=polyval(p,t)
plot(t,Pos)
This give me nice result but i want the Pos my output in simulink
can you some one please help me
thanks in advance
回答(3 个)
Ameer Hamza
2018-6-26
0 个投票
You can use From Workspace block to transfer trajectory signal data from MATLAB base workspace to Simulink.
Bilal sadiq
2018-6-26
0 个投票
5 个评论
Ameer Hamza
2018-6-26
编辑:Ameer Hamza
2018-6-26
"I have already done that but unable to get that"
please explain the problem in detail. It is difficult to guess the problem you are facing. Please provide more detail of what is not working and if possible attach a sample model and dataset with your comment.
Bilal sadiq
2018-6-26
Ameer Hamza
2018-6-26
Here is a simple example demonstrating how to use From Workspace to get base workspace data in Simulink.
First, run this code to create sample data:
t = 0:0.1:10;
y = t.^2;
data = [t' y'];
Then run the attached Simulink model. Also check the setting of the From Workspace block to see how to set the variable name.
Bilal sadiq
2018-6-27
Ameer Hamza
2018-6-27
What is the error?
Bilal sadiq
2018-6-27
0 个投票
2 个评论
Ameer Hamza
2018-6-27
Right-click on the file name and press Save Link as. Also instead of starting a new answer, it is better to keep comment on the original answer. It helps keep track of the things.
Bilal sadiq
2018-6-27
类别
在 帮助中心 和 File Exchange 中查找有关 Discontinuities 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
