フィルターのクリア

Undefined function 'clip' for input arguments of type 'logical'. Error in lines (line 3) aa=clip(aa); Error in main (line 81) [fl re]=lines(re);

3 ビュー (過去 30 日間)
function [fl re]=lines(aa)
%Divide text in lines.
aa=clip(aa);
r=size(aa,1);
for s=1:r
if sum(aa(s,:))==0
nm=aa(1:s-1,1:end);%First line matrix
rm=aa(s:end,1:end);%Remain line matrix
fl=~clip(~nm);
re=~clip(~rm);
%*-*-*Uncomment lines below to see the result*-*-*-*-
subplot(2,1,1);imshow(fl);
subplot(2,1,2);imshow(re);
break
else
fl=~aa;%Only one line.
re=[];
end
end
  2 件のコメント
Ced
Ced 2016 年 3 月 17 日
Just as the error says... "aa" is a logical, and you are calling a function "clip" with it. But matlab was not able to find any function which matches this format.
Praveen  kumar
Praveen kumar 2016 年 3 月 18 日
please provide the solution clearly

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

採用された回答

Walter Roberson
Walter Roberson 2016 年 3 月 18 日
You need to visit http://www.mathworks.com/matlabcentral/fileexchange/49832-a-simple-system-for-automatic-test-processing-and-exam-scoring and download the .zip there. Unzip it into a convenient directory that is not underneath your MATLAB installation. Use the MATLAB pathtool to add that directory to your MATLAB path and remember to tell pathtool to "save" the path. After that you will be able to call upon clip.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSearch Path についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by