Can't run the example plot

3 views (last 30 days)
Constantino
Constantino on 16 Mar 2012
Hi, when I try to run the example plot:
x = 0:pi/100:2*pi;
y = sin(x);
plot(x,y)
the following error appears:
Undefined function 'fieldnames' for input arguments of type 'double'.
Error in get (line 41)
fields = fieldnames(varargin{1});
Error in newplot (line 61)
fig = getPlotFigure;
Actually the same error appears when I try to plot anything. Please help with R2011b!!

Accepted Answer

Walter Roberson
Walter Roberson on 16 Mar 2012
You have created your own routine with the same name as one of the MATLAB routines, and your routine is being called instead of MATLAB's.
I cannot tell at the moment what routine this is happening for, but probably you have your own get.m routine ("get" is a built-in routine for MATLAB so no line number or source would be available if it was the MATLAB "get" that was being invoked.)
which -all get

More Answers (1)

Constantino
Constantino on 16 Mar 2012
Exactly, though the routine wasn't written by me. Thanks!

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!