Cody toolbox availability
2 ビュー (過去 30 日間)
古いコメントを表示
I've been wondering whether toolbox functions are available in Cody. Alan Chalker set as a problem testing whether a given toolbox is available on the Cody server, and the results seem to show that the Image Processing Toolbox is available.
However, when I try to call imfilter, an IPT function, I get an error from Cody.
Here's my solution to the test problem:
function y = toolbox(x)
v = ver;
y = ismember(x, {v.Name});
% double check that IPT is actually available
imfilter(rand(5), rand(2));
end
and here's what comes back:
Error: Undefined function 'imfilter' for input arguments of type 'double'.
If I omit the last line of my "solution", it works fine and appears to report that the IPT is available.
Has anyone any insight into this, please? I'm wondering if I'm doing something really stupid.
0 件のコメント
採用された回答
Helen Chen
2012 年 2 月 20 日
Hi David -
Cody currently supports basic MATLAB. Image Processing is not supported at this time.
Helen
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!