Scatter plot undefined variable
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Jackie Yang
il 14 Ago 2019
Commentato: Steven Lord
il 9 Ago 2023
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](https://www.mathworks.com/matlabcentral/answers/uploaded_files/233889/HALLLLAO%202019-08-14%20at%208.44.59%20pm.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 56![HALLLLAO 2019-08-14 at 8.46.22 pm.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/233890/HALLLLAO%202019-08-14%20at%208.46.22%20pm.png)
![HALLLLAO 2019-08-14 at 8.46.22 pm.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/233890/HALLLLAO%202019-08-14%20at%208.46.22%20pm.png)
Thank you!
0 Commenti
Risposta accettata
Geoff Hayes
il 14 Ago 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 Commenti
Più risposte (2)
Andrey Kiselnikov
il 14 Ago 2019
Modificato: Andrey Kiselnikov
il 14 Ago 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.
Sourov
il 9 Ago 2023
Modificato: Sourov
il 9 Ago 2023
Not any kinds of 2d scatter plot are functioning in Matlab R2023a. Why?
1 Commento
Steven Lord
il 9 Ago 2023
What does "Not ... functioning" mean in this context?
- Do you receive warning and/or error messages? If so the full and exact text of those messages (all the text displayed in orange and/or red in the Command Window) may be useful in determining what's going on and how to avoid the warning and/or error.
- Does it do something different than what you expected? If so, what did it do and what did you expect it to do?
- Did MATLAB crash? If so please send the crash log file (with a description of what you were running or doing in MATLAB when the crash occured) to Technical Support so we can investigate.
I'd also make sure that you haven't written a scatter.m file that's taking precedence over the scatter function included as part of MATLAB. Do you see any scatter.m file that are not under the matlabroot directory?
which -all scatter
Vedere anche
Categorie
Scopri di più su Startup and Shutdown in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!