This function does not fully set the dimensions of output port 2 error in matlab?
    24 views (last 30 days)
  
       Show older comments
    
    Najmeh Eskandari
 on 15 Oct 2018
  
    
    
    
    
    Commented: Prasath Lingan
 on 19 Nov 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 Comments
Accepted Answer
  Sebastian Castro
    
 on 6 Nov 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 Comments
  Sebastian Castro
    
 on 6 Nov 2018
				
      Edited: Sebastian Castro
    
 on 6 Nov 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
More Answers (1)
  Nicolas Schmit
    
 on 15 Oct 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 Comment
  Prasath Lingan
 on 19 Nov 2021
				Yes, You are absolutely right. After deleting all the variables that are used but not defined, the issue is gone. Thanks.
See Also
Categories
				Find more on General Applications in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!