This function does not fully set the dimensions of output port 2 error in matlab?
46 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Najmeh Eskandari
el 15 de Oct. de 2018
Comentada: Prasath Lingan
el 19 de Nov. de 2021
hi. I simulated impedance control for ur10.but there is an error:
Error in default port dimensions function of S-function 'impedance2/impedance controller'. This function does not fully set the dimensions of output port 2
I guess it the problem is with x signal. x is 1 if this is wrong. the signal should be 6,1 in ur10forwardkinematic block. I don't know where is output port2 exactly and how can I fix this problem? The Simulink file is attached.
0 comentarios
Respuesta aceptada
Sebastian Castro
el 6 de Nov. de 2018
Hi Najmeh Eskandari,
I would highly recommend running this code in MATLAB and debugging it yourself. I just did the same and your line 153 seems to have incorrect MATLAB code that causes an error.
C(k,j)= C(k,j)+0.5*(diff(D(k,j),q(i,1))+diff(D(i,k),q(j,1))-diff(D(i,j),q(k,1)))*dq(i,1);
Error using diff
Difference order N must be a positive integer scalar.
Try starting by fixing that. The second input to the diff function is actually just the number of differences to compute (so it should be an integer), but you are passing in values like q(j,1) and q(j,2) which are noninteger joint angle values, so this is incorrect.
- Sebastian
4 comentarios
Sebastian Castro
el 6 de Nov. de 2018
Editada: Sebastian Castro
el 6 de Nov. de 2018
Hi Najmeh,
I wanted to clarify, the diff function does not calculate an analytical derivative with response to a variable -- rather, it approximates the numerical derivative of an array of values.
What you're basically trying to do is get the Jacobian of the robot dynamics at a specific configuration (set of angles), which you'd have to do in another way. You can either:
- Derive the Jacobian from symbolic equations using Symbolic Math Toolbox
- Use the Get Jacobian block from Robotics System Toolbox
If you said you already derived it symbolically, there is a matlabFunction function that will automatically generate MATLAB code from that "long, ugly expression".
You can definitely use that inside a MATLAB Function block. I've done this recently for a simple 2DOF inverse kinematics calculation.
- Sebastian
Más respuestas (1)
Nicolas Schmit
el 15 de Oct. de 2018
Simulink is having a hard time determining the dimension of the outputs of the MATLAB Function blocks. The root cause is that you have many undefined variables in the code of the MATLAB function blocks. Because of those undefined variables, MATLAB cannot execute the code of the blocks and thus cannot determine the dimension of the outputs.
1 comentario
Prasath Lingan
el 19 de Nov. de 2021
Yes, You are absolutely right. After deleting all the variables that are used but not defined, the issue is gone. Thanks.
Ver también
Categorías
Más información sobre Simulink Functions en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!