Error in using Multimeter block

3 views (last 30 days)
Anurag Upadhyay
Anurag Upadhyay on 31 Aug 2015
Answered: Walter Roberson on 31 Aug 2015
I try to define multi-meter parameters it returns me the attached error. I am trying to recreate one of the examples on Matlab.

Answers (1)

Walter Roberson
Walter Roberson on 31 Aug 2015
The most common case with that kind of error would be if you have a routine that you created on the MATLAB path that happens to have the same name as one of the Mathworks provided routines that gets called directly or indirectly from the code. For example if you had your own set.m routine then that would mess up many functions.
You might be able to isolate the problem if you go to the MATLAB command line and command
dbstop if caught error
and then run the model. You might have to use "dbcont" several times until you are in the appropriate openfcn and then can start seeing what triggered the error.

Community Treasure Hunt

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

Start Hunting!