error I did not understand it?
古いコメントを表示
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 件のコメント
Star Strider
2015 年 2 月 8 日
Please describe what you want to do. What is your ‘gb’ variable?
採用された回答
その他の回答 (2 件)
Erik S.
2015 年 2 月 8 日
0 投票
You have a space between the name and the argumment,
scatterd (p);
write
scatterd(p);
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 件のコメント
Ameligege
2015 年 2 月 9 日
Image Analyst
2015 年 2 月 9 日
I see reference to dwt2, which I assume means discrete wavelet transform. I don't have the Wavelet Toolbox, so I can't run that function. I also don't have the functions kruskalwallis() or scatterd(). You will have to ask "they" who wrote the functions for help.
Erik S.
2015 年 2 月 9 日
Hi,
kruskalwallis is a function in Statistics toolbox (at least in R2014b), I guess we are not allowed to post the code here, since it would be a propery of the Mathworks? However, it is used for hypothesis testing.
Ameligege, are you sure you should use this function?? As far as I understand the documentation it will only return the p-values of a null hypothesis. How are you supposed to plot these values in a scatterplot? You will only get 1 vector.
Image Analyst
2015 年 2 月 10 日
I don't have the Statistics Toolbox either. I've added it to the product list at the top of the page. Is scatterd() in there also?
Ameligege
2015 年 2 月 13 日
カテゴリ
ヘルプ センター および File Exchange で Wavelet Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!