Undefined function or method 'markers2' for input arguments of type 'double'

1 vue (au cours des 30 derniers jours)
sana
sana le 15 Oct 2013
Commenté : sana le 20 Oct 2013
I get this error when ever i run the code below
scatter(data(1,clusters{cc}), data(2,clusters{cc}), ...
markers2(which_marker));
The problem is i don't what markers2 is doing and how can i remove this error.
  2 commentaires
Image Analyst
Image Analyst le 15 Oct 2013
Search your entire code and all other m-files in the folder or search path. Use "Find Files" button. Did it find markers2 anywhere else?
sana
sana le 20 Oct 2013
thanks, i used another function instead of markers!!!

Connectez-vous pour commenter.

Réponse acceptée

Jonathan LeSage
Jonathan LeSage le 15 Oct 2013
You're calling a function, markers2. Since this is not a standard MATLAB function, you should have a file in your directory named 'markers2.m'. If not, this line of code will not work.
If you remove markers2, you can at least plot your data.
scatter(data(1,clusters{cc}), data(2,clusters{cc}))
Consult the documentation for scatter for additional help with other acceptable inputs.

Plus de réponses (0)

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by