error I did not understand it?
1 回表示 (過去 30 日間)
古いコメントを表示
when I wrote this code an error message appear and I did not understand it can any one help me please?
and this is the error message:
Undefined function 'scatterd' for input arguments of type 'double'.
Error in preprocessfp (line 33)
scatterd (p);
1 件のコメント
採用された回答
Erik S.
2015 年 2 月 8 日
The function scatterd is not a standard matlab function, do you mean scatter(d)? Is it a function you made? Is it in the correct folder?
3 件のコメント
Erik S.
2015 年 2 月 9 日
Can you explain what you want to do? The scatter function is used for plotting data. You need to give the function at least to inputs, x & y coordinates of the points you are going to plot.
その他の回答 (2 件)
Image Analyst
2015 年 2 月 9 日
MATLAB is case sensitive. So in this:
p = kruskalwallis(cA)
scatter(P);
P is a different variable than p. Put this in your code and tell me what it says:
whos P
whos p
If you still need help, attach myfinger.jpg, and the code for kruskalwallis if it's not part of your wavelets toolbox. I've never heard of that filter though I have heard of a Wallis filter, which is a local filter that tries to make every window have the same, specified mean and standard deviation. I can't try your code though because I don't have the wavelet toolbox.
6 件のコメント
参考
カテゴリ
Help Center および File Exchange で AI for Signals and Images についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!