??? Undefined function or method 'In' for input arguments of type 'char'.

8 views (last 30 days)
Hi all,
I am trying to calculate the position of a point (x y z) with help of the points rotations. i have declared the rotation and all the other point inside the same m file. But i still get the below error
??? Undefined function or method 'In' for input arguments of type 'char'.
Thank in advance.
Regards, Bala
  6 Comments
Jan
Jan on 13 Oct 2011
Please, Bali, post the complete error message. It contains the line, which causes the problem. It is not useful if we try to guess, what your problem is, when it appears explicitely written in your command window.
In addition you should use the debugger, to find out, what's going on: Type "dbstop if error" in the command window and run your program again. Then Matlab stops, when the error occurs and you can check the variables.
Wayne King
Wayne King on 13 Oct 2011
I don't see how you're getting the error you report with this. I can see how you get an error that MR is not defined, but nothing about "In"

Sign in to comment.

Accepted Answer

Balaji
Balaji on 13 Oct 2011
Hi all,
Thanks for the help.
I found out the problem, i was having sapce in the file name "In File.m" and it caused the below error
??? Undefined function or method 'In' for input arguments of type 'char'.
The file works fine after removing the space in the file name.
once again thank you everyone.
Regards, Bala

More Answers (1)

wahad rahmann
wahad rahmann on 14 Nov 2018
Hi every one,
when i run this code
import ETS2.*
syms a1 a2 x y real
q1 = 30; q2 = 40;
E = Rz('q1')*Tx(a1)*Rz('q2')*Tx(a2);
TE = E.fkine( [q1,q2] );
simplify(TE)
it give error like this
''Undefined function or method 'Rz' for input arguments of type 'char'.
Error in ==> Untitled at 4
E = Rz('q1')*Tx(a1)*Rz('q2')*Tx(a2);''
please guide me.
thanks in advance
  1 Comment
Walter Roberson
Walter Roberson on 14 Nov 2018
You appear to be importing java methods related to European Truck Simulator 2. Where did you find the java code?

Sign in to comment.

Categories

Find more on Debugging and Analysis 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!