Too many input arguments ERROR

3 views (last 30 days)
siddhesh rane
siddhesh rane on 15 Jul 2013
>>Error using == Too many input arguments.
Error in readSTLexp5 (line 356)
if(Q{1,f}{S,4} == Q{1,f}{S,3})
I m getting above error while comparing two elements of cell. Can anyone explain??
Thanks in advance

Accepted Answer

Matt J
Matt J on 15 Jul 2013
Perhaps you meant this instead
if(Q(1,f){S,4} == Q(1,f){S,3})
  5 Comments
siddhesh rane
siddhesh rane on 15 Jul 2013
thanks for the help. May be problem is with other part of code.
Matt J
Matt J on 15 Jul 2013
Edited: Matt J on 15 Jul 2013
Hurray!! You pushed me over the 3000 rep points threshold. Thanks.

Sign in to comment.

More Answers (0)

Categories

Find more on Scope Variables and Generate Names in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!