I have a wblfit error
6 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I have an error with my wblfit. I am applying it to some data and I get the error: "X must be a vector containing positive values." I know that the data is a vector (I checked with isvector) and that all the values are greater than zero (I searched for values less than or equal to zero and got none). Now I really don't understand this error.
Thanks
Adam
0 件のコメント
採用された回答
Tom Lane
2013 年 6 月 9 日
Nor do I understand it. But if I look inside wblfit I see it displays an error message if either of these is true:
if ~isvector(x)
% or
elseif any(x <= 0)
Can you double-check those conditions on your data?
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!