フィルターのクリア

problem in writing a function

1 回表示 (過去 30 日間)
Bijoy
Bijoy 2013 年 6 月 16 日
What is the problem with this code?
function Y = BWMfn(B)
[m,n]=size(B);
Y=zeros(2*m,2*n);
for i=1:m;
for j=1:n;
if B(i,j)<128
Y(2*i-1,2*j-1)=0;
else
Y(2*i-1,2*j-1)=1;
end
end
end
BWM is a matrix. Please reply asap
  1 件のコメント
Bijoy
Bijoy 2013 年 6 月 16 日
I am getting this error:
Error using BWMfn (line 3)
Not enough input arguments.

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

採用された回答

Image Analyst
Image Analyst 2013 年 6 月 16 日
Why do you even want this anyway? It's kind of like simple thresholding
Y = B >= 128;
except that it has rows and columns of zeros interleaved. Why would you want that? By the way, you could vectorize it by doing:
Y = zeros(2*size(B));
Y(1:2:end, 1:2:end) = B >= 128;
  1 件のコメント
Bijoy
Bijoy 2013 年 6 月 16 日
I want the function in some other code for the purpose of data embeding. The function should do thresholding and give elements of the vector as Its output one by one. But the problem is I have to use the function within Some other loop.

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

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2013 年 6 月 16 日
You need to start the function from the command line, not by clicking on "Run" or pressing F5. For example at the command line command
BWMfn(rand(3,4))

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by