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

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 件のコメント

Image Analyst
Image Analyst 2013 年 10 月 15 日
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 2013 年 10 月 20 日
thanks, i used another function instead of markers!!!

サインインしてコメントする。

 採用された回答

Jonathan LeSage
Jonathan LeSage 2013 年 10 月 15 日
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.

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeFile Operations についてさらに検索

質問済み:

2013 年 10 月 15 日

コメント済み:

2013 年 10 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by