Scatter plot undefined variable

6 views (last 30 days)
Jackie Yang
Jackie Yang on 14 Aug 2019
Commented: Jackie Yang on 15 Aug 2019
Hi, i just started using Matlab for a personal project, I don't have any experience with it.
I'v tried to plot scatter plots with 3 different appropriate data sets and they all get the same error:
HALLLLAO 2019-08-14 at 8.44.59 pm.png
This is the same for every data set that I use...
Can i please get some help trying to fix this? Here's line 56HALLLLAO 2019-08-14 at 8.46.22 pm.png
Thank you!

Accepted Answer

Geoff Hayes
Geoff Hayes on 14 Aug 2019
Jackie - is the MATLAB code that you have posted above from the built-in MATLAB scatter function? Or is it something hat you have written? In the command window type
which scatter -all
to see which implementations of this function exist. If more than one exists, then you may want to rename your function to not conflict with the built-in one.
As for the error, at line 55 the boolean allowNonNumeric is defined but allowNumeric is being passed into the getRealData function. If this is your code, then try modifying it to keep the variables consistent.
  3 Comments
Jackie Yang
Jackie Yang on 15 Aug 2019
I'v changed the allowNonNumeric to allowNumeric in scatter.m, it seems to work, thank you!
Just wondering does all MATLAB copies comes with NonNumeric settings, I'm pretty sure i've never fiddledd with it.

Sign in to comment.

More Answers (1)

Andrey Kiselnikov
Andrey Kiselnikov on 14 Aug 2019
Edited: Andrey Kiselnikov on 14 Aug 2019
"allowNonNumeric" and "allowNumeric" are different variables, you defined first one and forgot last one (I assume this is mistake).
Good reference with ready to try examples is here
If my help was useful please mark this answer as accepted.
  1 Comment
Jackie Yang
Jackie Yang on 15 Aug 2019
Hi, I tiredd the example codeds, they all seem to work... But my data set doesn't. I was thinking maybe it's to do with the size of the data? I have 2 columns with about 4000 cells each..
Thank you!

Sign in to comment.

Products


Release

R2019a

Community Treasure Hunt

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

Start Hunting!